Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Commit e3aeca7

Browse files
author
cfalzone
committed
WEB-281 - Setup for Jenkins
1 parent 2025f82 commit e3aeca7

5 files changed

Lines changed: 38 additions & 181 deletions

File tree

.gitignore

Lines changed: 7 additions & 160 deletions
Original file line numberDiff line numberDiff line change
@@ -1,162 +1,9 @@
1-
#################
2-
## Eclipse
3-
#################
4-
5-
*.pydevproject
6-
.project
7-
.metadata
8-
bin/
9-
tmp/
10-
*.tmp
11-
*.bak
12-
*.swp
13-
*~.nib
14-
local.properties
1+
/build/classes/
2+
/generated/
3+
/bin/
154
.classpath
5+
.gradle/
6+
.project
167
.settings/
17-
.loadpath
18-
19-
# External tool builders
20-
.externalToolBuilders/
21-
22-
# Locally stored "Eclipse launch configurations"
23-
*.launch
24-
25-
# CDT-specific
26-
.cproject
27-
28-
# PDT-specific
29-
.buildpath
30-
31-
32-
#################
33-
## Visual Studio
34-
#################
35-
36-
## Ignore Visual Studio temporary files, build results, and
37-
## files generated by popular Visual Studio add-ons.
38-
39-
# User-specific files
40-
*.suo
41-
*.user
42-
*.sln.docstates
43-
44-
# Build results
45-
[Dd]ebug/
46-
[Rr]elease/
47-
*_i.c
48-
*_p.c
49-
*.ilk
50-
*.meta
51-
*.obj
52-
*.pch
53-
*.pdb
54-
*.pgc
55-
*.pgd
56-
*.rsp
57-
*.sbr
58-
*.tlb
59-
*.tli
60-
*.tlh
61-
*.tmp
62-
*.vspscc
63-
.builds
64-
*.dotCover
65-
66-
## TODO: If you have NuGet Package Restore enabled, uncomment this
67-
#packages/
68-
69-
# Visual C++ cache files
70-
ipch/
71-
*.aps
72-
*.ncb
73-
*.opensdf
74-
*.sdf
75-
76-
# Visual Studio profiler
77-
*.psess
78-
*.vsp
79-
80-
# ReSharper is a .NET coding add-in
81-
_ReSharper*
82-
83-
# Installshield output folder
84-
[Ee]xpress
85-
86-
# DocProject is a documentation generator add-in
87-
DocProject/buildhelp/
88-
DocProject/Help/*.HxT
89-
DocProject/Help/*.HxC
90-
DocProject/Help/*.hhc
91-
DocProject/Help/*.hhk
92-
DocProject/Help/*.hhp
93-
DocProject/Help/Html2
94-
DocProject/Help/html
95-
96-
# Click-Once directory
97-
publish
98-
99-
# Others
100-
[Bb]in
101-
[Oo]bj
102-
sql
103-
TestResults
104-
*.Cache
105-
ClientBin
106-
stylecop.*
107-
~$*
108-
*.dbmdl
109-
Generated_Code #added for RIA/Silverlight projects
110-
111-
# Backup & report files from converting an old project file to a newer
112-
# Visual Studio version. Backup files are not needed, because we have git ;-)
113-
_UpgradeReport_Files/
114-
Backup*/
115-
UpgradeLog*.XML
116-
117-
118-
119-
############
120-
## Windows
121-
############
122-
123-
# Windows image file caches
124-
Thumbs.db
125-
126-
# Folder config file
127-
Desktop.ini
128-
129-
130-
#############
131-
## Python
132-
#############
133-
134-
*.py[co]
135-
136-
# Packages
137-
*.egg
138-
*.egg-info
139-
dist
140-
eggs
141-
parts
142-
bin
143-
var
144-
sdist
145-
develop-eggs
146-
.installed.cfg
147-
148-
# Installer logs
149-
pip-log.txt
150-
151-
# Unit test / coverage reports
152-
.coverage
153-
.tox
154-
155-
#Translations
156-
*.mo
157-
158-
#Mr Developer
159-
.mr.developer.cfg
160-
161-
# Mac crap
162-
.DS_Store
8+
build/resources/
9+
build/tmp/

build.gradle

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,41 @@
1-
apply plugin: 'war'
21
apply plugin: 'osgi'
32
apply plugin: 'eclipse'
3+
apply plugin: 'propdeps'
4+
apply plugin: 'propdeps-maven'
5+
apply plugin: 'propdeps-eclipse'
46

5-
sourceCompatibility = '1.6'
6-
version = '1.0'
7+
sourceCompatibility = '1.7'
78

89
repositories {
9-
maven {
10-
url "http://repo.dotcms.com/artifactory/libs-release"
11-
}
10+
mavenCentral()
11+
maven { url "http://repo.dotcms.com/artifactory/libs-release" }
1212
}
1313

1414
dependencies {
15-
compile (group: 'com.dotcms', name: 'dotcms', version: '2.5.1'){
16-
transitive = true
17-
}
18-
providedCompile "javax.servlet:servlet-api:2.5"
15+
compile('com.dotcms:dotcms:2.5.3') { transitive = true }
16+
provided('javax.servlet:servlet-api:2.5')
1917
compile fileTree(dir: 'src/main/resources/lib', include: '*.jar')
2018
}
2119

20+
buildscript {
21+
repositories {
22+
maven { url 'http://repo.spring.io/plugins-release' }
23+
}
24+
dependencies {
25+
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
26+
}
27+
}
28+
2229
jar {
23-
manifest {
24-
name = 'Aquent GeoLocation'
25-
symbolicName = 'com.aquent.plugins.geolocation'
26-
instruction 'Bundle-Vendor', 'Aquent, LLC (cfalzone@aquent.com)'
27-
instruction 'Bundle-Description', 'Aquent GeoLocation Plugin'
28-
instruction 'Bundle-DocURL', 'http://www.aquent.com'
29-
instruction 'Bundle-Activator', 'com.aquent.viewtools.GeoIPActivator'
30-
instruction 'Bundle-ClassPath', '.', 'lib/maxmindgeoip.jar'
31-
instruction 'DynamicImport-Package', '*'
32-
instruction 'Import-Package', '!org.springframework.*', '!com.maxmind.*', '*;version=0'
33-
}
30+
manifest {
31+
name = 'Aquent GeoLocation'
32+
symbolicName = 'com.aquent.plugins.geolocation'
33+
instruction 'Bundle-Vendor', 'Aquent, LLC (cfalzone@aquent.com)'
34+
instruction 'Bundle-Description', 'Aquent GeoLocation Plugin'
35+
instruction 'Bundle-DocURL', 'http://www.aquent.com'
36+
instruction 'Bundle-Activator', 'com.aquent.viewtools.GeoIPActivator'
37+
instruction 'Bundle-ClassPath', '.', 'lib/maxmindgeoip.jar'
38+
instruction 'DynamicImport-Package', '*'
39+
instruction 'Import-Package', '!org.springframework.*', '!com.maxmind.*', '*;version=0'
40+
}
3441
}
106 KB
Binary file not shown.

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
group: com.aquent
2+
version: 1.1.0

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = "dotcms-plugins-geolocation"

0 commit comments

Comments
 (0)