-
Notifications
You must be signed in to change notification settings - Fork 396
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate Dependencies & Cleanup (#12780)
* Consolidate all dependencies to top level project (simpler/one place for all deps) * Remove unused dependencies and dependency version variables * Sort dependency version variables
- Loading branch information
1 parent
f58baae
commit d3186d4
Showing
15 changed files
with
38 additions
and
68 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
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,7 +1,5 @@ | ||
dependencies { | ||
implementation "org.java-websocket:Java-WebSocket:$javaWebSocketVersion" | ||
implementation project(":lib:websocket-client") | ||
implementation project(":lib:websocket-server") | ||
testImplementation "org.awaitility:awaitility:$awaitilityVersion" | ||
testImplementation project(":lib:test-common") | ||
} |
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,4 @@ | ||
dependencies { | ||
implementation "com.sun.xml.bind:jaxb-impl:$jaxbImplVersion" | ||
implementation project(":lib:java-extras") | ||
implementation project(":lib:xml-reader") | ||
testImplementation "org.xmlunit:xmlunit-core:$xmlUnitCore" | ||
testImplementation "org.xmlunit:xmlunit-matchers:$xmlUnitMatchers" | ||
} |
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
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
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,11 +1,5 @@ | ||
dependencies { | ||
implementation "com.google.code.gson:gson:$gsonVersion" | ||
implementation "io.github.openfeign:feign-core:$feignCoreVersion" | ||
implementation "io.github.openfeign:feign-gson:$feignGsonVersion" | ||
implementation project(":game-app:domain-data") | ||
implementation project(":lib:java-extras") | ||
testImplementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jacksonDataTypeVersion" | ||
testImplementation "com.github.tomakehurst:wiremock:$wireMockVersion" | ||
testImplementation "ru.lanwen.wiremock:wiremock-junit5:$wireMockJunit5Version" | ||
testImplementation project(":lib:test-common") | ||
} |
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,5 @@ | ||
description = "TripleA library for low-level helper APIs, ie: syntactic sugar" | ||
|
||
dependencies { | ||
implementation "com.github.ben-manes.caffeine:caffeine:$caffeineVersion" | ||
implementation "org.apache.httpcomponents:httpclient:$apacheHttpComponentsVersion" | ||
implementation "org.snakeyaml:snakeyaml-engine:$snakeYamlVersion" | ||
implementation "commons-io:commons-io:$commonsIoVersion" | ||
testImplementation project(":lib:test-common") | ||
} |
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
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,3 @@ | ||
dependencies { | ||
implementation "com.google.code.gson:gson:$gsonVersion" | ||
implementation project(":lib:java-extras") | ||
} |
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