Skip to content

Commit

Permalink
Minimal compatibility changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
at88mph committed Sep 19, 2024
1 parent a0be710 commit a5841a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion cadc-download-manager-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ dependencies {
implementation 'commons-io:commons-io:[2.7,)'

testImplementation 'junit:junit:4.13'
testImplementation 'org.easymock:easymock:3.6'
}

apply from: '../opencadc.gradle'
5 changes: 2 additions & 3 deletions cadc-download-manager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repositories {

version = '1.5.2'
group = 'org.opencadc'
sourceCompatibility = 11
sourceCompatibility = 1.8

description = 'OpenCADC DownloadManager client'
def git_url = 'https://github.com/opencadc/apps'
Expand All @@ -24,13 +24,12 @@ dependencies {
implementation 'org.opencadc:cadc-util:[1.6,)'
implementation 'org.opencadc:cadc-registry:[1.1.1,)'
implementation 'org.opencadc:cadc-app-kit:[1.0,)'
implementation 'org.opencadc:cadc-vos:[1.0,)'
implementation 'org.opencadc:cadc-vos:1.2.3'
implementation 'org.opencadc:cadc-dali:[1.2.15,)'
implementation 'org.opencadc:cadc-datalink:[1.0.0,1.1.0)'
implementation 'org.opencadc:caom2-artifact-resolvers:[1.2.10,1.3.0)'

testImplementation 'junit:junit:[4.13,)'
testImplementation 'org.easymock:easymock:[3.0,)'
}

configurations {
Expand Down
6 changes: 3 additions & 3 deletions cadc-upload-manager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {

version = '1.0.16'
group = 'org.opencadc'
sourceCompatibility = 11
sourceCompatibility = 1.8

description = 'OpenCADC UploadManager client'
def git_url = 'https://github.com/opencadc/apps'
Expand All @@ -24,12 +24,12 @@ dependencies {
implementation 'org.opencadc:cadc-registry:[1.5,2.0)'
implementation 'org.opencadc:cadc-util:[1.6,2.0)'
implementation 'org.opencadc:cadc-uws:[1.0,2.0)'
implementation 'org.opencadc:cadc-vos:[1.2.2,2.0)'
implementation 'org.opencadc:cadc-vos:1.2.3'

// cadc-uws-server used only for a random string generator
testImplementation 'org.opencadc:cadc-uws-server:[1.1,)'
testImplementation 'junit:junit:[4.0,)'
testImplementation 'org.easymock:easymock:3.6'
testImplementation 'org.easymock:easymock:[5.4,6.0)'
}

// exclude stuff not needed for a client application but pulled in by cadc-util
Expand Down

0 comments on commit a5841a1

Please sign in to comment.