This repository has been archived by the owner on Jan 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
build.gradle
304 lines (244 loc) · 8.1 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'checkstyle'
apply plugin: 'jacoco'
apply plugin: 'findbugs'
apply plugin: 'maven-publish'
apply plugin: 'jetty'
apply plugin: 'pmd'
apply plugin: 'jdepend'
apply plugin: 'com.bmuschko.cargo'
apply plugin: 'com.bmuschko.cargo-base'
// If you use this project for training and want to deploy to your Tomcat webapp
// you must chose set a trainingUserName, which gives you your own deploy path on Tomcat
// and your own artifact repository
ext.trainingUserName = 'mytrainingusername' // it is a good idea to chose the same as your github id
ext {
artifactoryUrlAndPort = System.properties.artifactoryUrlAndPort ?: "http://roadshowartifactory:8081/artifactory"
tomcatHostname = System.properties.tomcatHostname ?: "roadshowtomcatserver/" //no http or https
tomcatPort = System.properties.tomcatPort ?: "8080"
seleniumHostname = System.properties.seleniumHostname ?: "10.10.1.134"
seleniumPort = System.properties.seleniumPort ?: "44444"
tomcatUrlAndPort = "http://" + tomcatHostname + ":" + tomcatPort
appName = name
deployContext = System.properties.deployContext ?: "RC" // should be either RC or REL
trainingUserWebappDir = System.properties.trainingUserWebappDir ?: trainingUserName //
deployPath = System.properties.deployPath ?: "${trainingUserWebappDir}/${appName}-${deployContext}"
buildNumber = System.properties.buildNumber ?: "SNAPSHOT"
}
group = 'net.praqma.roadshow.buep' // FIXME - add your initials or github id here
ext.versionMajor = "0"
ext.versionMinor = "0"
ext.versionPatch = "51"
version = "${versionMajor}.${versionMinor}.${versionPatch}-${buildNumber}"
// https://github.com/ajoberstar/gradle-git/wiki
import org.ajoberstar.grgit.*
ext.gitRepo = Grgit.open(project.file('.'))
ext.gitRepoUrl = gitRepo.remote.list().get(0).url
ext.gitVersion = "${version}-${gitRepo.head().abbreviatedId}"
task printProps {
doLast {
println "App name: ${appName}"
println "Training user name: ${trainingUserName}"
println "Artifactory URL and port: ${artifactoryUrlAndPort}"
println "Tomcat host name 'tomcatHostname': ${tomcatHostname}"
println "Tomcat port 'tomcatPort': ${tomcatPort}"
println "Tomcat port 'tomcatUrlAndPort': ${tomcatUrlAndPort}"
println "Deploy context: ${deployContext}"
println "Deploy path: ${deployPath}"
println "Version: ${version}"
println "Git version: ${gitVersion}"
println "Git repo: ${gitRepoUrl}"
}
}
description = """"""
sourceCompatibility = 1.6
targetCompatibility = 1.6
def repositoryUrl(name) {
ext.artifactoryUrlAndPort + "/libs-${name}-local"
}
tasks.withType(JavaCompile){
options.warnings = true
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version:'2.26.0'
compile group: 'org.seleniumhq.selenium', name: 'selenium-server', version:'2.28.0'
compile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.0.1'
compile group: 'junit', name: 'junit', version:'4.7'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.bmuschko:gradle-cargo-plugin:2.0.3'
classpath 'org.ajoberstar:gradle-git:1.1.0'
}
}
jacoco {
toolVersion = "0.7.1.201405082137"
}
test {
filter {
includeTestsMatching "net.praqma.roadshow.unit.*"
}
}
// disable caching of dependencies
configurations.all {
// check for updates every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
stopPort = 4455
stopKey = 'stop'
task startApp(type: JettyRunWar) {
daemon = true
}
task functionalTestTomcat(type: Test) {
systemProperties(
deployPath: deployPath,
tomcatUrlAndPort: tomcatUrlAndPort,
seleniumPort: seleniumPort,
seleniumHostname: seleniumHostname)
testLogging.showStandardStreams = true
filter {
includeTestsMatching "net.praqma.roadshow.functional.*"
}
}
task functionalTest(type: Test) {
group 'verification'
description 'Execute Selenium tests'
dependsOn startApp
filter {
includeTestsMatching "net.praqma.roadshow.functional.*"
}
finalizedBy jettyStop
}
// Create test tasks to use on Jenkins so test results
// are seen as new, even though gradle is to smart to run
// the tasks again. The Jenkins JUnit plugin fails the build
// if test results are not new, eg. when building manually.
tasks.addRule("Pattern: jenkins<TaskName>: Update timestamp of test output files.") { String taskName ->
if (taskName.startsWith('jenkins')) {
String s = taskName - 'jenkins'
Task testTask = tasks.findByName(s[0].toLowerCase() + s[1..-1])
// If the rest of the taskName identifies a Test task, then create new task to update timestamp of test output file. This is needed for Jenkins
if (testTask instanceof Test) {
tasks.create(taskName) {
dependsOn testTask
doLast {
def timestamp = System.currentTimeMillis()
fileTree(dir: "${buildDir}/test-results/", include: "TEST*.xml").each {
it.lastModified = timestamp
}
}
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.2'
}
task staticAnalysis {
description 'Run all project defined static analysis checks on source and test code'
dependsOn jdependMain, jdependTest, pmdMain, pmdTest, checkstyleMain, checkstyleTest, findbugsMain, findbugsTest
}
pmd {
toolVersion = '5.1.1'
ignoreFailures = true
}
jdepend {
toolVersion = '2.9.1'
ignoreFailures = true
}
checkstyle {
toolVersion = '5.7'
ignoreFailures = true
}
findbugs {
toolVersion = "3.0.1"
ignoreFailures = true
}
publishing {
repositories {
maven {
url deployContext == "REL" ? repositoryUrl("release") : repositoryUrl("snapshot")
}
}
publications {
roadShow(MavenPublication) {
artifact war
}
}
}
configurations {
// Configuration for artifacts deployed to Tomcat
deployables
}
// display caching for snapshot version
configurations.deployables.resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
dependencies {
deployables "${group}:${name}:${version}"
}
// TODO too many hardcoded values
task deploy(type: Copy) {
description "Retrieve the war from repository and deploy to Tomcat"
group "Web application"
from (configurations.deployables) { rename { "roadshow.war" } }
into '/tmp/tomcat/webapps'
}
// https://github.com/bmuschko/gradle-cargo-plugin
cargo {
containerId = 'tomcat7x'
port = tomcatPort.toInteger()
deployable {
context = deployPath
}
remote {
hostname = tomcatHostname
// username = "username"
// password = "password"
if (project.hasProperty('tomcatUsername')) {
username = tomcatUsername
println "********************" + username
} else {
println "Property 'tomcatUsername' not defined"
}
if (project.hasProperty('tomcatPassword')) {
password = tomcatPassword
println "********************" + password
} else {
println "Property 'tomcatPassword' not defined"
}
}
}
task deployWar(type: Copy) {
description "Deploy the war to Tomcat"
group "Web application"
from (war) { rename { "roadshow.war" } }
into '/tmp/tomcat/webapps'
}
// gradle.org/docs/current/userguide/userguide_single.html#N103DE , see "7.2.3. Customizing the project"
war {
manifest {
attributes 'Implementation-AppName': appName,
'Implementation-TrainingUserName': trainingUserName,
'Implementation-DeployPath': deployPath,
'Implementation-Version': version,
'Implementation-GitVersion': gitVersion,
'Implementation-GitRepoUrl': gitRepoUrl
}
}
jar {
manifest {
attributes 'Implementation-AppName': appName,
'Implementation-TrainingUserName': trainingUserName,
'Implementation-DeployPath': deployPath,
'Implementation-Version': version,
'Implementation-GitVersion': gitVersion,
'Implementation-GitRepoUrl': gitRepoUrl
}
}