Skip to content

Commit

Permalink
Add back dependencies needed to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
tdrwenski committed May 30, 2024
1 parent 4a5a0d8 commit 2c2f7ac
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 5 deletions.
1 change: 1 addition & 0 deletions cdm-test-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependencies {
implementation 'junit:junit'
implementation 'org.slf4j:slf4j-api'
implementation 'com.google.re2j:re2j'
implementation 'org.jdom:jdom2'
implementation 'org.testcontainers:testcontainers'

testRuntimeOnly 'ch.qos.logback:logback-classic'
Expand Down
2 changes: 2 additions & 0 deletions cdm-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ dependencies {
testImplementation project(':grib')
testImplementation project(':netcdf4')
testImplementation project(':cdm-test-utils')
testImplementation project(':udunits')

testImplementation 'commons-io:commons-io'
testImplementation 'org.apache.commons:commons-compress'
testImplementation 'edu.ucar:jj2000'
testImplementation 'org.jdom:jdom2'
testImplementation 'com.google.guava:guava'
testImplementation 'com.google.re2j:re2j'
testImplementation 'software.amazon.awssdk:s3'
testImplementation 'com.google.truth:truth'
testImplementation 'org.slf4j:slf4j-api'
Expand Down
2 changes: 2 additions & 0 deletions cdm/misc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ dependencies {
implementation project(':cdm:cdm-core')

implementation 'com.google.code.findbugs:jsr305'
implementation 'com.google.guava:guava'
implementation 'com.google.protobuf:protobuf-java'
implementation 'com.google.re2j:re2j'

implementation 'org.slf4j:slf4j-api'
Expand Down
1 change: 1 addition & 0 deletions cdm/radial/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies {

implementation 'org.jdom:jdom2'
implementation 'com.google.code.findbugs:jsr305'
implementation 'com.google.guava:guava'
implementation 'com.google.re2j:re2j'
implementation 'org.slf4j:slf4j-api'

Expand Down
2 changes: 2 additions & 0 deletions cdm/s3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ dependencies {

implementation 'software.amazon.awssdk:apache-client'
implementation 'com.google.code.findbugs:jsr305'
implementation 'com.google.guava:guava'
implementation 'com.google.re2j:re2j'

runtimeOnly('software.amazon.awssdk:sts') {
// see above comment about awssdk and netty-nio-client
Expand Down
1 change: 1 addition & 0 deletions cdm/zarr/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies {
implementation 'org.slf4j:slf4j-api'
implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.google.guava:guava'

testImplementation('software.amazon.awssdk:s3') {
// exclude netty nio client due to open CVEs. See
Expand Down
3 changes: 3 additions & 0 deletions docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ dependencies {
testImplementation project(':cdm-test-utils')
testImplementation project(':bufr')
testImplementation project(':grib')
testImplementation project(':udunits')

testImplementation 'org.jdom:jdom2'
testImplementation 'org.slf4j:slf4j-api'
testImplementation 'junit:junit'
testImplementation 'com.google.truth:truth'
Expand Down
1 change: 1 addition & 0 deletions grib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ dependencies {
implementation 'org.slf4j:slf4j-api'

testImplementation project(':cdm-test-utils')
testImplementation project(':udunits')

testImplementation 'com.google.truth:truth'
testImplementation 'org.jsoup:jsoup'
Expand Down
1 change: 1 addition & 0 deletions legacy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies {

implementation project(':grib')
implementation project(':opendap')
implementation project(':udunits')

implementation 'com.google.guava:guava'
implementation 'org.jdom:jdom2'
Expand Down
1 change: 1 addition & 0 deletions netcdf4/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies {
implementation project(':cdm:cdm-core')
implementation 'net.java.dev.jna:jna'
implementation 'org.slf4j:slf4j-api'
implementation 'com.google.guava:guava'

testImplementation project(':cdm-test-utils')

Expand Down
10 changes: 5 additions & 5 deletions uibase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ dependencies {

// Used by NcmlEditor. Abandoned, no updates since 2013. https://sourceforge.net/projects/bounce/
// https://sourceforge.net/p/bounce/svn/HEAD/tree/src/main/java/org/bounce/
implementation 'org.bounce:bounce:0.18'
api 'org.bounce:bounce:0.18'

// http://www.jfree.org/
implementation 'org.jfree:jcommon:1.0.23'
implementation 'org.jfree:jfreechart:1.0.19'
api 'org.jfree:jcommon:1.0.23'
api 'org.jfree:jfreechart:1.0.19'

// http://www.jgoodies.com/. Latest version is 1.9.0, but there is breakage when we try to upgrade.
implementation 'com.jgoodies:jgoodies-forms:1.6.0'
api 'com.jgoodies:jgoodies-forms:1.6.0'

// LGoodDatePicker - swing calendar widget used in TdsMonitor
implementation 'com.github.lgooddatepicker:LGoodDatePicker:10.3.1'
api 'com.github.lgooddatepicker:LGoodDatePicker:10.3.1'

testImplementation project(':cdm:cdm-core')
testImplementation project(':cdm-test-utils')
Expand Down
3 changes: 3 additions & 0 deletions uicdm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,16 @@ dependencies {
implementation project(':netcdf4')
implementation project(':opendap')
implementation project(':dap4')
implementation project(':udunits')
implementation project(':uibase')
implementation project(':visad:cdm-mcidas') // For Gempak IOSPs.
implementation project(':waterml')

// constrained by netcdf-java-platform
implementation 'org.apache.xmlbeans:xmlbeans'
implementation 'org.jdom:jdom2'
implementation 'org.apache.httpcomponents:httpclient'
implementation 'com.google.protobuf:protobuf-java'
implementation 'com.google.re2j:re2j'
implementation 'org.slf4j:slf4j-api'

Expand Down
1 change: 1 addition & 0 deletions visad/mcidas/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dependencies {
api project(':cdm:cdm-core')

implementation project(':grib')
implementation project(':udunits')

implementation 'edu.wisc.ssec:visad-mcidas-slim-ucar-ns'
implementation 'com.google.guava:guava'
Expand Down

0 comments on commit 2c2f7ac

Please sign in to comment.