-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #418 from Netflix/upgrade-gradle
Upgrade to Gradle 7.5.1 and move to com.netflix.nebula.netflixoss
- Loading branch information
Showing
15 changed files
with
83 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
dependencies { | ||
compile project(':governator-api') | ||
api project(':governator-api') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
dependencies { | ||
compile 'javax.inject:javax.inject:1' | ||
api 'javax.inject:javax.inject:1' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
dependencies { | ||
compile project(':governator') | ||
compile 'com.netflix.archaius:archaius-core:0.5.12' | ||
api project(':governator') | ||
api 'com.netflix.archaius:archaius-core:0.5.12' | ||
|
||
testCompile project(':governator').sourceSets.test.output | ||
testImplementation project(':governator').sourceSets.test.output | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// Establish version and status | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
dependencies { | ||
compile project(':governator') | ||
compile "commons-cli:commons-cli:1.2" | ||
api project(':governator') | ||
api "commons-cli:commons-cli:1.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
dependencies { | ||
compile project(':governator-core') | ||
compile project(':governator-providers') | ||
api project(':governator-core') | ||
api project(':governator-providers') | ||
|
||
compile "com.google.inject.extensions:guice-servlet:${guice_version}" | ||
compile "javax.xml.bind:jaxb-api:${jaxb_version}" | ||
api "com.google.inject.extensions:guice-servlet:${guice_version}" | ||
api "javax.xml.bind:jaxb-api:${jaxb_version}" | ||
|
||
compile 'com.sun.jersey:jersey-server:1.19' | ||
compile 'com.sun.jersey.contribs:jersey-guice:1.19' | ||
api 'com.sun.jersey:jersey-server:1.19' | ||
api 'com.sun.jersey.contribs:jersey-guice:1.19' | ||
|
||
compileOnly 'javax.servlet:javax.servlet-api:3.0.1' | ||
|
||
testCompile'org.eclipse.jetty:jetty-servlet:9.4.33.v20201020' | ||
testCompile project(':governator-jetty') | ||
testImplementation 'org.eclipse.jetty:jetty-servlet:9.4.33.v20201020' | ||
testImplementation project(':governator-jetty') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
dependencies { | ||
compile project(':governator-core') | ||
compile "com.google.inject.extensions:guice-servlet:${guice_version}" | ||
api project(':governator-core') | ||
api "com.google.inject.extensions:guice-servlet:${guice_version}" | ||
|
||
compile "javax.xml.bind:jaxb-api:${jaxb_version}" | ||
api "javax.xml.bind:jaxb-api:${jaxb_version}" | ||
|
||
compile 'com.sun.jersey:jersey-server:1.19' | ||
compile 'org.eclipse.jetty:jetty-servlet:9.4.33.v20201020' | ||
compile 'org.eclipse.jetty:jetty-webapp:9.4.33.v20201020' | ||
api 'com.sun.jersey:jersey-server:1.19' | ||
api 'org.eclipse.jetty:jetty-servlet:9.4.33.v20201020' | ||
api 'org.eclipse.jetty:jetty-webapp:9.4.33.v20201020' | ||
compileOnly "com.netflix.archaius:archaius2-api:${archaius2_version}" | ||
compileOnly "com.netflix.archaius:archaius2-core:${archaius2_version}" | ||
|
||
testCompile 'com.sun.jersey.contribs:jersey-guice:1.19' | ||
testImplementation 'com.sun.jersey.contribs:jersey-guice:1.19' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
dependencies { | ||
compile "javax.inject:javax.inject:1" | ||
compile "com.google.inject:guice:${guice_version}" | ||
api "javax.inject:javax.inject:1" | ||
api "com.google.inject:guice:${guice_version}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
dependencies { | ||
compile project(':governator-core') | ||
compile "com.google.inject.extensions:guice-servlet:${guice_version}" | ||
api project(':governator-core') | ||
api "com.google.inject.extensions:guice-servlet:${guice_version}" | ||
|
||
compileOnly 'javax.servlet:javax.servlet-api:3.0.1' | ||
|
||
testCompile "org.mockito:mockito-all:1.9.5" | ||
testCompile 'com.sun.jersey.contribs:jersey-guice:1.19' | ||
testCompile 'javax.servlet:javax.servlet-api:3.0.1' | ||
testImplementation "org.mockito:mockito-all:1.9.5" | ||
testImplementation 'com.sun.jersey.contribs:jersey-guice:1.19' | ||
testImplementation 'javax.servlet:javax.servlet-api:3.0.1' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
dependencies { | ||
compile project(':governator-test') | ||
compile 'junit:junit:4.12' | ||
api project(':governator-test') | ||
api 'junit:junit:4.12' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
dependencies { | ||
compile project(':governator') | ||
compile project(':governator-api') | ||
compile project(':governator-core') | ||
compile "com.netflix.archaius:archaius2-guice:${archaius2_version}" | ||
compile ("com.netflix.archaius:archaius2-test:${archaius2_version}") { | ||
api project(':governator') | ||
api project(':governator-api') | ||
api project(':governator-core') | ||
api "com.netflix.archaius:archaius2-guice:${archaius2_version}" | ||
api ("com.netflix.archaius:archaius2-test:${archaius2_version}") { | ||
exclude module: 'junit' | ||
} | ||
compile "com.netflix.archaius:archaius2-api:${archaius2_version}" | ||
compile "com.netflix.archaius:archaius2-core:${archaius2_version}" | ||
compile 'org.apache.commons:commons-lang3:3.3.2' | ||
compile 'org.mockito:mockito-core:1.9.5' | ||
api "com.netflix.archaius:archaius2-api:${archaius2_version}" | ||
api "com.netflix.archaius:archaius2-core:${archaius2_version}" | ||
api 'org.apache.commons:commons-lang3:3.3.2' | ||
api 'org.mockito:mockito-core:1.9.5' | ||
compileOnly 'junit:junit:4.12' | ||
testCompile 'junit:junit:4.12' | ||
testImplementation 'junit:junit:4.12' | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters