-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsettings.gradle
57 lines (52 loc) · 1.25 KB
/
settings.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
pluginManagement {
includeBuild "gradle/plugins/aot-smoke-test-plugin"
repositories {
if (System.env['REPO_SPRING_IO_USERNAME'] != null && System.env['REPO_SPRING_IO_PASSWORD'] != null) {
maven {
name "Maven Central Mirror"
url "https://repo.spring.io/artifactory/repo1"
credentials {
username System.env['REPO_SPRING_IO_USERNAME']
password System.env['REPO_SPRING_IO_PASSWORD']
}
mavenContent {
releasesOnly()
}
}
}
else {
mavenCentral()
}
gradlePluginPortal()
maven {
name "Spring Snapshot"
url "https://repo.spring.io/artifactory/snapshot"
mavenContent {
snapshotsOnly()
}
}
maven {
name "Spring Milestone"
url "https://repo.spring.io/artifactory/milestone"
mavenContent {
releasesOnly()
}
}
}
}
plugins {
id "com.gradle.develocity" version "3.17.3"
id "io.spring.ge.conventions" version "0.0.17"
}
rootProject.name="spring-aot-smoke-tests"
include "aot-smoke-test-support"
["batch", "boot", "cloud", "data", "framework", "graphql", "integration", "security", "session"].each { group ->
file(group).eachDirMatch(~/[a-z].*/) { smokeTest ->
include "$group:${smokeTest.name}"
}
}
develocity {
buildScan {
value("Spring Boot generation", "${springBootGeneration}")
}
}