File tree Expand file tree Collapse file tree 3 files changed +6
-17
lines changed
rewrite-test-engine-remote Expand file tree Collapse file tree 3 files changed +6
-17
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,7 @@ plugins {
22 id(" org.openrewrite.build.language-library" )
33}
44
5- val latest = if (project.hasProperty(" releasing" )) {
6- " latest.release"
7- } else {
8- " latest.integration"
9- }
5+ val latest = if (project.hasProperty(" releasing" )) " latest.release" else " latest.integration"
106
117tasks.compileJava {
128 options.release = 8
@@ -34,4 +30,4 @@ dependencies {
3430
3531 testImplementation(" org.openrewrite:rewrite-test" )
3632 testImplementation(" org.junit-pioneer:junit-pioneer:latest.release" )
37- }
33+ }
Original file line number Diff line number Diff line change @@ -2,11 +2,7 @@ plugins {
22 id(" org.openrewrite.build.language-library" )
33}
44
5- val latest = if (project.hasProperty(" releasing" )) {
6- " latest.release"
7- } else {
8- " latest.integration"
9- }
5+ val latest = if (project.hasProperty(" releasing" )) " latest.release" else " latest.integration"
106
117tasks.compileJava {
128 options.release = 8
@@ -20,7 +16,7 @@ tasks.withType<Test> {
2016
2117dependencies {
2218 compileOnly(" org.openrewrite:rewrite-test" )
23- implementation(" org.openrewrite:rewrite-remote-java:latest.integration " ) {
19+ implementation(" org.openrewrite:rewrite-remote-java:$ latest" ) {
2420 exclude(group = " org.openrewrite" , module = " rewrite-python" )
2521 }
2622
Original file line number Diff line number Diff line change @@ -7,11 +7,8 @@ application {
77 mainClass = " org.openrewrite.remote.java.RemotingServer"
88}
99
10- val latest = if (project.hasProperty(" releasing" )) {
11- " latest.release"
12- } else {
13- " latest.integration"
14- }
10+ val latest = if (project.hasProperty(" releasing" )) " latest.release" else " latest.integration"
11+
1512dependencies {
1613
1714 // The bom version can also be set to a specific version
You can’t perform that action at this time.
0 commit comments