Skip to content

Commit

Permalink
Switch to using BOM instead of setting individual packages (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanIsCoding authored Mar 12, 2024
1 parent 7ae0549 commit 36cf72b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
7 changes: 5 additions & 2 deletions dicom_util/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ repositories {
}

dependencies {
compile "org.json:json:20170516"
compile platform('com.google.cloud:libraries-bom:5.1.0')
compile platform('com.google.cloud:google-cloud-shared-dependencies:0.1.0')
compile "com.google.api-client:google-api-client"
compile "com.google.inject:guice:4.1.0"
compile "com.google.api-client:google-api-client:1.30.5"

compile "org.json:json:20170516"
compile "junit:junit:4.12"
compile "org.junit.jupiter:junit-jupiter-engine:5.0.0"
compile "org.dcm4che:dcm4che-core:5.31.2"
Expand Down
9 changes: 6 additions & 3 deletions export/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,14 @@ repositories {
}

dependencies {
compile 'com.google.cloud:google-cloud-pubsub:1.98.0'
compile platform('com.google.cloud:libraries-bom:5.1.0')
compile platform('com.google.cloud:google-cloud-shared-dependencies:0.1.0')
compile 'com.google.cloud:google-cloud-pubsub'
compile 'com.google.guava:guava:28.1-jre'
compile 'com.google.auth:google-auth-library-oauth2-http'
compile "com.google.api-client:google-api-client"

compile "com.beust:jcommander:1.72"
compile 'com.google.auth:google-auth-library-oauth2-http:0.17.2'
compile "com.google.api-client:google-api-client:1.30.5"
compile "org.dcm4che:dcm4che-core:5.31.2"
compile "org.dcm4che:dcm4che-net:5.31.2"
compile project(":dicom_util")
Expand Down
7 changes: 5 additions & 2 deletions import/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,13 @@ repositories {
}

dependencies {
compile platform('com.google.cloud:libraries-bom:5.1.0')
compile platform('com.google.cloud:google-cloud-shared-dependencies:0.1.0')
compile 'com.google.guava:guava:28.1-jre'
compile 'com.google.auth:google-auth-library-oauth2-http'
compile "com.google.api-client:google-api-client"

compile "com.beust:jcommander:1.72"
compile 'com.google.auth:google-auth-library-oauth2-http:0.17.2'
compile "com.google.api-client:google-api-client:1.30.5"
compile "org.dcm4che:dcm4che-core:5.31.2"
compile "org.dcm4che:dcm4che-net:5.31.2"

Expand Down
4 changes: 3 additions & 1 deletion util/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ dependencies {
compile "org.dcm4che:dcm4che-core:5.31.2"
compile "org.dcm4che:dcm4che-net:5.31.2"
compile "org.json:json:20180813"
compile "com.google.cloud:google-cloud-monitoring:1.98.0"
compile platform('com.google.cloud:libraries-bom:5.1.0')
compile platform('com.google.cloud:google-cloud-shared-dependencies:0.1.0')
compile "com.google.cloud:google-cloud-monitoring"

testCompile "com.google.truth:truth:1.0"
testCompile "junit:junit:4.2"
Expand Down

0 comments on commit 36cf72b

Please sign in to comment.