-
Notifications
You must be signed in to change notification settings - Fork 113
fix: 1725 inconsistent dependency versions across modules #1978
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
qcdyx
merged 31 commits into
master
from
1725-inconsistent-dependency-versions-across-modules
Feb 24, 2025
Merged
Changes from 29 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
6db0970
updated version catalogs
qcdyx 1db5ac9
resolved com.google.auto.service:auto-service version inconsistency
qcdyx 9ece81e
resolved flogger, flogger system backend version inconsisitencies
qcdyx 1e57f31
Merge branch 'master' into 1725-inconsistent-dependency-versions-acro…
qcdyx 894451b
small fix
qcdyx 3ef076a
libs.gson
qcdyx 9889fda
libs.auto.value
qcdyx b8fbcac
libs.guava
qcdyx 29256db
libs.univocity.parsers
qcdyx 08f4647
libs.commons.compress
qcdyx d962b56
libs.mockito.core
qcdyx 6322bf0
libs.auto.value.annotations
qcdyx 0f1ec93
libs.junit
qcdyx 9106746
libs.truth
qcdyx cc650bc
libs.truth.extension
qcdyx 148c69a
libs.javax.inject
qcdyx af369c8
libs.httpClient5
qcdyx 10c1c8b
libs.geometry
qcdyx cfa12aa
libs.classgraph
qcdyx 1405ed4
libs.location.tech, libs.thymeleaf
qcdyx 78cb62f
libs.commons-io, flexmark
qcdyx 2e2d215
libs.commons.validator
qcdyx bf9c992
libs.jcommander
qcdyx 09dde5c
libs.java-poet, api-client
qcdyx 6b8909d
Merge branch 'master' into 1725-inconsistent-dependency-versions-acro…
qcdyx 21ea23a
libs.jetbrains.annotations, aspectjrt, etc.
qcdyx 608ed66
Merge branch '1725-inconsistent-dependency-versions-across-modules' o…
qcdyx 3fdf7f4
used httpclient5 for all libraries
qcdyx 3d1bca3
updated code to httpClient5
qcdyx 14ab3df
libs.junit
qcdyx ecb19db
libs.junit
qcdyx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,71 @@ | ||
| [versions] | ||
| spotless = "7.0.2" | ||
| shadow-jar = '7.1.2' | ||
| shadow-jar = "7.1.2" | ||
| apacheCommonsLang = "3.6" | ||
| autoService = "1.0.1" | ||
| flogger = "0.6" | ||
| floggerBackend = "0.6" | ||
| gson = "2.8.6" | ||
| autoValue = "1.7.4" | ||
| autoValueAnnotations = "1.7.4" | ||
| guava = "31.0.1-jre" | ||
| univocityParsers = "2.9.0" | ||
| commonsCompress = "1.20" | ||
| mockito = "4.5.1" | ||
| junit = "4.13" | ||
| truth = "1.1.3" | ||
| truthExtension = "1.0.1" | ||
| javaxInject = "1" | ||
| httpClient5 = "5.0.3" | ||
| geometry = "2.0.0" | ||
| libphonenumber = "8.12.13" | ||
| classgraph = "4.8.146" | ||
| thymeleaf = "3.0.15.RELEASE" | ||
| locationtech = "1.20.0" | ||
| flexmark = "0.64.8" | ||
| commonsIO = "2.8.0" | ||
| commonsValidator = "1.6" | ||
| jcommander = "1.48" | ||
| javaPoet = "1.13.0" | ||
| apiClient = "1.31.2" | ||
| jetbrainsAnnotations = "20.1.0" | ||
| aspectjrt = "1.9.20" | ||
| aspectjrtweaver = "1.9.20" | ||
| findbugs = "3.0.2" | ||
|
|
||
| [plugins] | ||
| spotless = { id = "com.diffplug.spotless", version.ref = "spotless" } | ||
| shadow-jar = { id = 'com.github.johnrengelman.shadow', version.ref = 'shadow-jar' } | ||
| shadow-jar = { id = "com.github.johnrengelman.shadow", version.ref = "shadow-jar" } | ||
|
|
||
| [libraries] | ||
| commons-lang3 = { module = "org.apache.commons:commons-lang3", version.ref = "apacheCommonsLang" } | ||
| auto-service = { module = "com.google.auto.service:auto-service", version.ref = "autoService" } | ||
| flogger = { module = "com.google.flogger:flogger", version.ref = "flogger" } | ||
| flogger-system-backend = { module = "com.google.flogger:flogger-system-backend", version.ref = "floggerBackend" } | ||
| gson = { module = "com.google.code.gson:gson", version.ref = "gson" } | ||
| auto-value = { module = "com.google.auto.value:auto-value", version.ref = "autoValue" } | ||
| auto-value-annotations = { module = "com.google.auto.value:auto-value-annotations", version.ref = "autoValueAnnotations" } | ||
| guava = { module = "com.google.guava:guava", version.ref = "guava" } | ||
| univocity-parsers = { module = "com.univocity:univocity-parsers", version.ref = "univocityParsers" } | ||
| commons-compress = { module = "org.apache.commons:commons-compress", version.ref = "commonsCompress" } | ||
| mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" } | ||
| junit = { module = "junit:junit", version.ref = "junit" } | ||
| truth = { module = "com.google.truth:truth", version.ref = "truth" } | ||
| truth-extension = { module = "com.google.truth.extensions:truth-java8-extension", version.ref = "truthExtension" } | ||
| javax-inject = { module = "javax.inject:javax.inject", version.ref = "javaxInject" } | ||
| httpclient5 = { module = "org.apache.httpcomponents.client5:httpclient5", version.ref = "httpClient5" } | ||
| geometry = { module = "com.google.geometry:s2-geometry", version.ref = "geometry" } | ||
| libphonenumber = { module = "com.googlecode.libphonenumber:libphonenumber", version.ref = "libphonenumber" } | ||
| classgraph = { module = "io.github.classgraph:classgraph", version.ref = "classgraph" } | ||
| location-tech = { module = "org.locationtech.jts:jts-core", version.ref = "locationtech" } | ||
| thymeleaf = { module = "org.thymeleaf:thymeleaf", version.ref = "thymeleaf" } | ||
| flexmark = { module = "com.vladsch.flexmark:flexmark-all", version.ref = "flexmark" } | ||
| commons-io = { module = "commons-io:commons-io", version.ref = "commonsIO" } | ||
| commons-validator = { module = "commons-validator:commons-validator", version.ref = "commonsValidator" } | ||
| jcommander = { module = "com.beust:jcommander", version.ref = "jcommander" } | ||
| java-poet = { module = "com.squareup:javapoet", version.ref = "javaPoet" } | ||
| api-client = { module = "com.google.api-client:google-api-client", version.ref = "apiClient" } | ||
| jetbrains-annotations = { module = "org.jetbrains:annotations", version.ref = "jetbrainsAnnotations" } | ||
| aspectjrt = { module = "org.aspectj:aspectjrt", version.ref = "aspectjrt" } | ||
| aspectjrt-weaver = { module = "org.aspectj:aspectjweaver", version.ref = "aspectjrtweaver" } | ||
| findbugs = { module = "com.google.code.findbugs:jsr305", version.ref = "findbugs" } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.