forked from cloudfoundry/uaa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
478 lines (409 loc) · 15 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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
import org.apache.commons.lang.time.StopWatch
import org.apache.tools.ant.filters.ReplaceTokens
import java.nio.file.Files
import java.nio.file.Paths
buildscript {
apply from: file('shared_versions.gradle')
repositories {
mavenCentral()
jcenter()
maven {
url 'https://repo.spring.io/plugins-release'
}
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath group: 'com.bmuschko', name: 'gradle-cargo-plugin', version: '2.2.3'
classpath group: 'org.jfrog.buildinfo', name: 'build-info-extractor-gradle', version: '2.2.4'
classpath group: 'org.kt3k.gradle.plugin', name: 'coveralls-gradle-plugin', version: '2.4.0'
classpath group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '1.1.8'
classpath group: 'postgresql', name: 'postgresql', version: '9.1-901.jdbc3'
classpath group: 'com.microsoft.sqlserver', name: 'mssql-jdbc', version: '6.1.0.jre8'
classpath group: 'org.flywaydb', name: 'flyway-gradle-plugin', version: flywayVersion
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
classpath group: 'com.moowork.gradle', name: 'gradle-node-plugin', version: '1.1.0'
}
}
ext {
databaseType = {
List activeProfiles = System.getProperty('spring.profiles.active', 'default').split(',')
if (activeProfiles.contains('mysql')) {
'mysql'
} else if (activeProfiles.contains('postgresql')) {
'postgresql'
} else if (activeProfiles.contains('sqlserver')) {
'sqlserver'
} else {
'hsqldb'
}
}
integrationCoverageFile = file("$buildDir/integration.ser")
}
apply from: file('shared_versions.gradle')
def uaaVersion = version
allprojects {
apply plugin: 'maven'
group = 'org.cloudfoundry.identity'
version = uaaVersion
apply plugin: 'propdeps'
apply plugin: 'propdeps-maven'
apply plugin: 'propdeps-idea'
apply plugin: 'propdeps-eclipse'
configurations.provided.transitive = false
apply plugin: 'eclipse-wtp'
repositories {
mavenCentral()
maven {
url 'https://build.shibboleth.net/nexus/content/repositories/releases/'
}
maven { url 'http://repository.mulesoft.org/releases/'}
}
task sourceJar(type: Jar) {
from sourceSets.main.allJava
classifier "sources"
}
apply plugin: 'maven-publish'
publishing {
repositories {
maven {
url "https://oss.sonatype.org/content/repositories/releases/"
credentials {
username "$nexusUsername"
password "$nexusPassword"
}
}
}
}
}
apply plugin: 'com.bmuschko.cargo'
apply plugin: 'org.flywaydb.flyway'
flyway {
switch (databaseType()) {
case 'mysql':
driver = 'org.mariadb.jdbc.Driver'
url = 'jdbc:mysql://localhost:3306/uaa'
user = 'root'
password = 'changeme'
schemas = ['uaa']
locations = ['filesystem:server/src/main/resources/org/cloudfoundry/identity/uaa/db/mysql']
break
case 'postgresql':
driver = 'org.postgresql.Driver'
url = 'jdbc:postgresql:uaa'
user = 'root'
password = 'changeme'
locations = ['filesystem:server/src/main/resources/org/cloudfoundry/identity/uaa/db/postgresql']
break
case 'sqlserver':
driver = 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
url = 'jdbc:sqlserver://localhost:1433;database=uaa;'
user = 'root'
password = 'changemeCHANGEME1234!'
locations = ['filesystem:server/src/main/resources/org/cloudfoundry/identity/uaa/db/sqlserver']
break
}
}
flywayClean.enabled = Boolean.valueOf(System.getProperty("flyway.clean", "true"))
task prepareDatabase {
dependsOn { databaseType().equals('hsqldb') ? null : flywayClean }
}
task cleanCargoConfDir {
delete file(System.getProperty('java.io.tmpdir') + '/cargo/conf')
try {
Files.createDirectory(Paths.get(System.getProperty('java.io.tmpdir') + '/cargo'))
} catch (all) {
}
}
cargoStartLocal.dependsOn assemble, prepareDatabase
cargoRunLocal.dependsOn cleanCargoConfDir, assemble
task run(dependsOn: cargoRunLocal)
task manifests(dependsOn: assemble, type: Copy) {
from('uaa/src/test/resources/sample-manifests') {
include '**/*.yml'
filter(ReplaceTokens,
tokens: [
version: uaaVersion,
app: System.getProperty('app', 'myuaa'),
appdomain: System.getProperty('app-domain', 'bosh-lite.com'),
]
)
}
into 'build/sample-manifests'
}
subprojects {
apply plugin: 'java'
dependencies {
testCompile('com.github.sbrannen:spring-test-junit5:1.2.0')
testCompile("org.junit.jupiter:junit-jupiter-api:5.2.0")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.2.0")
testRuntime("org.junit.vintage:junit-vintage-engine:5.2.0")
}
[compileJava, compileTestJava]*.options*.compilerArgs = ['-Xlint:none', '-nowarn']
sourceCompatibility = 1.8
targetCompatibility = 1.8
test {
useJUnitPlatform()
jvmArgs += ["-Xmx1024m", "-XX:+StartAttachListener"]
}
task integrationTest(type: Test) {
dependsOn rootProject.cargoStartLocal
}
task packageSources(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
task generateDocs() {
}
javadoc {
logging.captureStandardError LogLevel.INFO
logging.captureStandardOutput LogLevel.INFO // suppress "## warnings" message
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives packageSources
archives javadocJar
}
repositories {
maven { url 'https://jitpack.io' }
maven { url "https://repo.spring.io/release" }
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/ext-release-local" }
maven { url "https://repo.maven.apache.org/maven2" }
}
install {
repositories.mavenInstaller {
pom.project {
name 'UAA'
description 'Cloud Foundry User Account and Authentication'
url 'http://github.com//cloudfoundry/uaa'
inceptionYear '2011'
licenses {
license {
name 'The Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
scm {
connection 'scm:git:[email protected]:cloudfoundry/uaa.git'
developerConnection 'scm:git:[email protected]:cloudfoundry/uaa.git'
url 'https://github.com/cloudfoundry/uaa'
}
developers {
developer {
id 'fhanik'
name 'Filip Hanik'
roles {
role 'Developer'
}
}
developer {
id 'mbhave'
name 'Madhura Bhave'
roles {
role 'Developer'
}
}
developer {
id 'cdutra'
name 'Chris Dutra'
roles {
role 'Developer'
}
}
}
}
}
}
sourceSets {
}
}
publishing {
publications {
uaa_parent(MavenPublication) {
groupId 'org.cloudfoundry.identity'
version uaaVersion
artifactId 'cloudfoundry-identity-parent'
from components.java
artifact sourceJar
}
}
}
def integrationTestCoverageExecutionData = "${buildDir}/integrationTestCoverageReport.exec"
cargo {
containerId = tomcatContainerId
port = 8080
deployable {
file = file('statsd/build/libs/cloudfoundry-identity-statsd-' + version + '.war')
context = 'statsd'
}
deployable {
file = file('samples/api/build/libs/cloudfoundry-identity-api-' + version + '.war')
context = 'api'
}
deployable {
file = file('samples/app/build/libs/cloudfoundry-identity-app-' + version + '.war')
context = 'app'
}
local {
timeout = 540000
List activeProfiles = System.getProperty('spring.profiles.active', '').split(',')
if (activeProfiles.contains('debug')) {
jvmArgs = "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 -DLOGIN_CONFIG_URL=file://" + new File(".").absolutePath + "/uaa/src/main/resources/required_configuration.yml"
} else {
jvmArgs = "-DLOGIN_CONFIG_URL=file://" + new File(".").absolutePath + "/uaa/src/main/resources/required_configuration.yml"
}
outputFile = file('uaa/build/reports/tests/uaa-server.log')
configFile {
file = file('scripts/travis/tomcat-conf/context.xml')
toDir = 'conf'
}
systemProperties {
property 'spring.profiles.active', System.getProperty('spring.profiles.active', 'default')
property 'metrics.perRequestMetrics', System.getProperty('metrics.perRequestMetrics', 'true')
}
installer {
installUrl = 'https://repo1.maven.org/maven2/org/apache/tomcat/tomcat/' + tomcatVersion + '/tomcat-' + tomcatVersion + '.tar.gz'
downloadDir = file("$buildDir/download")
extractDir = file("$buildDir/extract")
}
}
}
project.gradle.taskGraph.whenReady { TaskExecutionGraph graph ->
cargo {
deployable {
file = file('uaa/build/libs/cloudfoundry-identity-uaa-' + version + '.war')
context = 'uaa'
}
local {
systemProperties {
property 'smtp.host', 'localhost'
property 'smtp.port', 2525
}
}
}
project.allprojects.collect({ it.tasks.withType(Test) }).flatten().each {
it.systemProperty 'spring.profiles.active', System.getProperty('spring.profiles.active', 'default')
}
}
apply plugin: 'com.github.kt3k.coveralls'
Project identityModel = subprojects.find { it.name.equals('cloudfoundry-identity-model') }
Project identityServer = subprojects.find { it.name.equals('cloudfoundry-identity-server') }
Project identityStatsd = subprojects.find { it.name.equals('cloudfoundry-identity-statsd') }
Project identityUaa = subprojects.find { it.name.equals('cloudfoundry-identity-uaa') }
def publishedProjects = subprojects
assemble.dependsOn subprojects.assemble
task integrationTest {
finalizedBy cargoStopLocal
}
integrationTest.dependsOn subprojects.integrationTest
test.dependsOn subprojects.test
test.mustRunAfter integrationTest
task mockAssertion(type: JavaExec) {
main = 'org.cloudfoundry.identity.uaa.saml.MockSamlAssertion'
args = System.getProperty("file", null) == null ? [] : [System.getProperty("file")]
classpath = files(subprojects.sourceSets.test.runtimeClasspath)
}
task encrypt(type: JavaExec) {
main = 'org.cloudfoundry.identity.uaa.Encryptor'
args = System.getProperty("encryptArgs", null) == null ? [] : System.getProperty("encryptArgs").split(",").toList()
classpath = files(subprojects.find {it.name.contains('server') }.sourceSets.test.runtimeClasspath)
}
task decrypt(type: JavaExec) {
main = 'org.cloudfoundry.identity.uaa.Decryptor'
args = System.getProperty("decryptArgs", null) == null ? [] : System.getProperty("decryptArgs").split(",").toList()
classpath = files(subprojects.find {it.name.contains('server') }.sourceSets.test.runtimeClasspath)
}
// Log timings per task.
class TimingsListener implements TaskExecutionListener, BuildListener, org.gradle.api.tasks.testing.TestListener {
private StopWatch clock
private StopWatch testClock
private int beforeCount
private timings = []
private testTimings = []
private final testLimit = 5000
private Task currentTask
@Override
void beforeExecute(Task task) {
clock = new StopWatch()
clock.start()
currentTask = task
}
@Override
void afterExecute(Task task, TaskState taskState) {
clock.stop()
def ms = clock.getTime()
timings.add([ms, task.path])
task.project.logger.warn "${task.path} took ${ms}ms"
}
@Override
void buildFinished(BuildResult result) {
println "Task timings:"
for (timing in timings) {
if (timing[0] >= 500) {
printf "%7sms %s\n", timing
}
}
println "Test timings:"
for (timing in testTimings.sort { it[0] }) {
if (timing[0] >= testLimit) {
printf "%7sms %s\n", timing
}
}
}
@Override
void beforeSuite(TestDescriptor suite) {
testClock = new StopWatch()
testClock.start()
}
@Override
void afterSuite(TestDescriptor suite, TestResult result) {
def ms = testClock.getTime()
testTimings.add([ms, suite.getName()])
currentTask.project.logger.warn "${suite.name} took ${ms}ms"
}
int checkConnections(String action, TestDescriptor suite) {
java.sql.Connection con = null
int count = -1
try {
java.sql.Driver driver = Class.forName("org.postgresql.Driver").newInstance()
java.util.Properties p = new java.util.Properties()
p.setProperty("user", "root")
p.setProperty("password", "changeme")
con = driver.connect("jdbc:postgresql:uaa", p)
java.sql.Statement st = con.createStatement()
java.sql.ResultSet rs = st.executeQuery("select count(*) from pg_stat_activity")
rs.next()
count = rs.getInt(1)
System.err.println(action + " Connection count[" + suite.getName() + "] is: " + count)
} finally {
if (con != null) {
try {
con.close()
} catch (Exception ignore) {
}
}
}
return count
}
@Override
void beforeTest(TestDescriptor test) {}
@Override
void afterTest(TestDescriptor test, TestResult result) {}
@Override
void buildStarted(Gradle gradle) {}
@Override
void projectsEvaluated(Gradle gradle) {}
@Override
void projectsLoaded(Gradle gradle) {}
@Override
void settingsEvaluated(Settings settings) {}
}
gradle.addListener new TimingsListener()