Skip to content

Commit f242021

Browse files
committed
Enable Edge discovery
1 parent 71e40de commit f242021

File tree

207 files changed

+19805
-25
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+19805
-25
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ repositories {
77
}
88

99
dependencies {
10+
testImplementation("junit:junit:4.13.2")
1011
testImplementation(platform("org.junit:junit-bom:5.11.3"))
1112
testImplementation("org.junit.jupiter:junit-jupiter")
13+
testImplementation("org.testcontainers:testcontainers:1.15.3")
1214
}
1315

1416
tasks.test {
@@ -17,6 +19,6 @@ tasks.test {
1719

1820
java {
1921
toolchain {
20-
languageVersion.set(JavaLanguageVersion.of(8))
22+
languageVersion.set(JavaLanguageVersion.of(21))
2123
}
2224
}

settings.gradle.kts

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
1+
pluginManagement {
2+
repositories {
3+
mavenLocal()
4+
gradlePluginPortal()
5+
maven {
6+
url = uri("https://repo.grdev.net/artifactory/public")
7+
credentials {
8+
settings.extra.apply {
9+
username = System.getenv("ARTIFACTORY_USERNAME") ?: get(if (has("gradleInternalRepositoryUsername")) "gradleInternalRepositoryUsername" else "enterprise.snapshots.username").toString()
10+
password = System.getenv("ARTIFACTORY_PASSWORD") ?: get(if (has("gradleInternalRepositoryPassword")) "gradleInternalRepositoryPassword" else "enterprise.snapshots.password").toString()
11+
}
12+
}
13+
authentication {
14+
create<BasicAuthentication>("basic")
15+
}
16+
}
17+
maven {
18+
url = uri("https://repo.grdev.net/artifactory/enterprise-libs-release-candidates-local/")
19+
}
20+
}
21+
22+
}
23+
124
plugins {
2-
id("com.gradle.develocity") version "3.18.2"
25+
id("com.gradle.develocity") version "3.19-rc-1"
326
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
427
}
528

629
rootProject.name = "gradle-build-scan-quickstart"
30+
31+
develocity {
32+
server = "https://develocity.grdev.net"
33+
allowUntrustedServer = true
34+
edgeDiscovery = true
35+
buildCache {
36+
local {
37+
isEnabled = false
38+
}
39+
remote(develocity.buildCache) {
40+
isPush = true
41+
}
42+
}
43+
}

src/main/java/example/Example.java

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
package org.gradle.test.performance.largejavamultiproject.project0.p0;
2+
3+
public class Production0 {
4+
5+
private String property0;
6+
7+
public String getProperty0() {
8+
return property0;
9+
}
10+
11+
public void setProperty0(String value) {
12+
property0 = value;
13+
}
14+
15+
private String property1;
16+
17+
public String getProperty1() {
18+
return property1;
19+
}
20+
21+
public void setProperty1(String value) {
22+
property1 = value;
23+
}
24+
25+
private String property2;
26+
27+
public String getProperty2() {
28+
return property2;
29+
}
30+
31+
public void setProperty2(String value) {
32+
property2 = value;
33+
}
34+
35+
private String property3;
36+
37+
public String getProperty3() {
38+
return property3;
39+
}
40+
41+
public void setProperty3(String value) {
42+
property3 = value;
43+
}
44+
45+
private String property4;
46+
47+
public String getProperty4() {
48+
return property4;
49+
}
50+
51+
public void setProperty4(String value) {
52+
property4 = value;
53+
}
54+
55+
private String property5;
56+
57+
public String getProperty5() {
58+
return property5;
59+
}
60+
61+
public void setProperty5(String value) {
62+
property5 = value;
63+
}
64+
65+
private String property6;
66+
67+
public String getProperty6() {
68+
return property6;
69+
}
70+
71+
public void setProperty6(String value) {
72+
property6 = value;
73+
}
74+
75+
private String property7;
76+
77+
public String getProperty7() {
78+
return property7;
79+
}
80+
81+
public void setProperty7(String value) {
82+
property7 = value;
83+
}
84+
85+
private String property8;
86+
87+
public String getProperty8() {
88+
return property8;
89+
}
90+
91+
public void setProperty8(String value) {
92+
property8 = value;
93+
}
94+
95+
private String property9;
96+
97+
public String getProperty9() {
98+
return property9;
99+
}
100+
101+
public void setProperty9(String value) {
102+
property9 = value;
103+
}
104+
105+
}
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
package org.gradle.test.performance.largejavamultiproject.project0.p0;
2+
3+
public class Production1 {
4+
5+
private String property0;
6+
7+
public String getProperty0() {
8+
return property0;
9+
}
10+
11+
public void setProperty0(String value) {
12+
property0 = value;
13+
}
14+
15+
private String property1;
16+
17+
public String getProperty1() {
18+
return property1;
19+
}
20+
21+
public void setProperty1(String value) {
22+
property1 = value;
23+
}
24+
25+
private String property2;
26+
27+
public String getProperty2() {
28+
return property2;
29+
}
30+
31+
public void setProperty2(String value) {
32+
property2 = value;
33+
}
34+
35+
private String property3;
36+
37+
public String getProperty3() {
38+
return property3;
39+
}
40+
41+
public void setProperty3(String value) {
42+
property3 = value;
43+
}
44+
45+
private String property4;
46+
47+
public String getProperty4() {
48+
return property4;
49+
}
50+
51+
public void setProperty4(String value) {
52+
property4 = value;
53+
}
54+
55+
private String property5;
56+
57+
public String getProperty5() {
58+
return property5;
59+
}
60+
61+
public void setProperty5(String value) {
62+
property5 = value;
63+
}
64+
65+
private String property6;
66+
67+
public String getProperty6() {
68+
return property6;
69+
}
70+
71+
public void setProperty6(String value) {
72+
property6 = value;
73+
}
74+
75+
private String property7;
76+
77+
public String getProperty7() {
78+
return property7;
79+
}
80+
81+
public void setProperty7(String value) {
82+
property7 = value;
83+
}
84+
85+
private String property8;
86+
87+
public String getProperty8() {
88+
return property8;
89+
}
90+
91+
public void setProperty8(String value) {
92+
property8 = value;
93+
}
94+
95+
private String property9;
96+
97+
public String getProperty9() {
98+
return property9;
99+
}
100+
101+
public void setProperty9(String value) {
102+
property9 = value;
103+
}
104+
105+
}
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
package org.gradle.test.performance.largejavamultiproject.project0.p0;
2+
3+
public class Production10 {
4+
5+
private String property0;
6+
7+
public String getProperty0() {
8+
return property0;
9+
}
10+
11+
public void setProperty0(String value) {
12+
property0 = value;
13+
}
14+
15+
private String property1;
16+
17+
public String getProperty1() {
18+
return property1;
19+
}
20+
21+
public void setProperty1(String value) {
22+
property1 = value;
23+
}
24+
25+
private String property2;
26+
27+
public String getProperty2() {
28+
return property2;
29+
}
30+
31+
public void setProperty2(String value) {
32+
property2 = value;
33+
}
34+
35+
private String property3;
36+
37+
public String getProperty3() {
38+
return property3;
39+
}
40+
41+
public void setProperty3(String value) {
42+
property3 = value;
43+
}
44+
45+
private String property4;
46+
47+
public String getProperty4() {
48+
return property4;
49+
}
50+
51+
public void setProperty4(String value) {
52+
property4 = value;
53+
}
54+
55+
private String property5;
56+
57+
public String getProperty5() {
58+
return property5;
59+
}
60+
61+
public void setProperty5(String value) {
62+
property5 = value;
63+
}
64+
65+
private String property6;
66+
67+
public String getProperty6() {
68+
return property6;
69+
}
70+
71+
public void setProperty6(String value) {
72+
property6 = value;
73+
}
74+
75+
private String property7;
76+
77+
public String getProperty7() {
78+
return property7;
79+
}
80+
81+
public void setProperty7(String value) {
82+
property7 = value;
83+
}
84+
85+
private String property8;
86+
87+
public String getProperty8() {
88+
return property8;
89+
}
90+
91+
public void setProperty8(String value) {
92+
property8 = value;
93+
}
94+
95+
private String property9;
96+
97+
public String getProperty9() {
98+
return property9;
99+
}
100+
101+
public void setProperty9(String value) {
102+
property9 = value;
103+
}
104+
105+
}

0 commit comments

Comments
 (0)