diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 40c2bed6..d1fac84c 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -1,4 +1,4 @@ -name: Java+Docker CI +name: Java CI on: pull_request: @@ -11,10 +11,10 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Set up JDK 1.8 + - name: Set up JDK 11 uses: actions/setup-java@v1 with: - java-version: 1.8 + java-version: 11 - name: build and test storage-inventory-dm run: cd storage-inventory-dm && ../gradlew --info clean build xslt @@ -40,8 +40,8 @@ jobs: - name: build and test cadc-storage-adapter-fs run: cd cadc-storage-adapter-fs && ../gradlew --info clean build javadoc checkstyleMain install - - name: build and test cadc-storage-adapter-ad - run: cd cadc-storage-adapter-ad && ../gradlew --info clean build javadoc checkstyleMain install +# - name: build and test cadc-storage-adapter-ad +# run: cd cadc-storage-adapter-ad && ../gradlew --info clean build javadoc checkstyleMain install # - name: build and test cadc-storage-adapter-s3 # run: cd cadc-storage-adapter-s3 && ../gradlew --info clean build javadoc checkstyleMain install diff --git a/baldur/VERSION b/baldur/VERSION index 300f66c1..80398822 100644 --- a/baldur/VERSION +++ b/baldur/VERSION @@ -1,6 +1,6 @@ ## deployable containers have a semantic and build tag # semantic version tag: major.minor # build version tag: timestamp -VER=0.3.6 +VER=0.3.7 TAGS="${VER} ${VER}-$(date --utc +"%Y%m%dT%H%M%S")" unset VER diff --git a/baldur/build.gradle b/baldur/build.gradle index 5b00e5b9..84ff3220 100644 --- a/baldur/build.gradle +++ b/baldur/build.gradle @@ -13,7 +13,7 @@ repositories { apply from: '../opencadc.gradle' -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' diff --git a/cadc-inventory-db/build.gradle b/cadc-inventory-db/build.gradle index 8822b4de..e563f680 100644 --- a/cadc-inventory-db/build.gradle +++ b/cadc-inventory-db/build.gradle @@ -13,11 +13,11 @@ repositories { apply from: '../opencadc.gradle' -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' -version = '1.0.2' +version = '1.0.3' description = 'OpenCADC Storage Inventory database library' def git_url = 'https://github.com/opencadc/storage-inventory' diff --git a/cadc-inventory-server/build.gradle b/cadc-inventory-server/build.gradle index cfe7d425..76745ca1 100644 --- a/cadc-inventory-server/build.gradle +++ b/cadc-inventory-server/build.gradle @@ -10,9 +10,11 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 + group = 'org.opencadc' -version = '0.3.1' + +version = '0.3.2' description = 'OpenCADC Storage Inventory server utility library' def git_url = 'https://github.com/opencadc/storage-inventory' diff --git a/cadc-inventory-util/build.gradle b/cadc-inventory-util/build.gradle index 112c2520..a78e0e68 100644 --- a/cadc-inventory-util/build.gradle +++ b/cadc-inventory-util/build.gradle @@ -12,11 +12,11 @@ repositories { apply from: '../opencadc.gradle' -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' -version = '0.1.11' +version = '0.1.12' description = 'OpenCADC Storage Inventory client utility library' def git_url = 'https://github.com/opencadc/storage-inventory' diff --git a/cadc-inventory/build.gradle b/cadc-inventory/build.gradle index b56ba421..70584fd9 100644 --- a/cadc-inventory/build.gradle +++ b/cadc-inventory/build.gradle @@ -10,11 +10,11 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' -version = '1.0.1' +version = '1.0.2' description = 'OpenCADC Storage Inventory core library' def git_url = 'https://github.com/opencadc/storage-inventory' diff --git a/cadc-storage-adapter-ad/README.md b/cadc-storage-adapter-ad/README.md index 126dcc13..d752b3ae 100644 --- a/cadc-storage-adapter-ad/README.md +++ b/cadc-storage-adapter-ad/README.md @@ -1,4 +1,4 @@ -# cadc-storage-adapter-ad +# cadc-storage-adapter-ad -- OBSOLETE AD storage adapter implementation. Currently supports GET and Iterator functionality only. diff --git a/cadc-storage-adapter-fs/build.gradle b/cadc-storage-adapter-fs/build.gradle index 0085cb7a..1269afb7 100644 --- a/cadc-storage-adapter-fs/build.gradle +++ b/cadc-storage-adapter-fs/build.gradle @@ -10,13 +10,13 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 apply from: '../opencadc.gradle' group = 'org.opencadc' -version = '0.9.3' +version = '0.9.4' description = 'OpenCADC Storage Inventory FileSystem StorageAdapter implementation' def git_url = 'https://github.com/opencadc/storage-inventory' diff --git a/cadc-storage-adapter-swift/build.gradle b/cadc-storage-adapter-swift/build.gradle index 437fc055..f920db1d 100644 --- a/cadc-storage-adapter-swift/build.gradle +++ b/cadc-storage-adapter-swift/build.gradle @@ -10,11 +10,11 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' -version = '0.8.7' +version = '0.8.8' apply from: '../opencadc.gradle' diff --git a/cadc-storage-adapter-test/build.gradle b/cadc-storage-adapter-test/build.gradle index 8bc015a8..3bd1fcb3 100644 --- a/cadc-storage-adapter-test/build.gradle +++ b/cadc-storage-adapter-test/build.gradle @@ -10,11 +10,11 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' -version = '0.5.2' +version = '0.5.3' description = 'OpenCADC Storage Inventory StorageAdapter test library' def git_url = 'https://github.com/opencadc/storage-inventory' diff --git a/cadc-storage-adapter/build.gradle b/cadc-storage-adapter/build.gradle index 6fef828e..3db4cecc 100644 --- a/cadc-storage-adapter/build.gradle +++ b/cadc-storage-adapter/build.gradle @@ -10,11 +10,11 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' -version = '1.0.0' +version = '1.0.1' description = 'OpenCADC Storage Inventory StorageAdapter API library' def git_url = 'https://github.com/opencadc/storage-inventory' diff --git a/critwall/VERSION b/critwall/VERSION index 03dfe36f..0cb76787 100644 --- a/critwall/VERSION +++ b/critwall/VERSION @@ -1,6 +1,6 @@ ## deployable containers have a semantic and build tag # semantic version tag: major.minor[.patch] # build version tag: timestamp -VER=1.0.1 +VER=1.0.2 TAGS="${VER} ${VER}-$(date --utc +"%Y%m%dT%H%M%S")" unset VER diff --git a/critwall/build.gradle b/critwall/build.gradle index 9787055f..05886353 100644 --- a/critwall/build.gradle +++ b/critwall/build.gradle @@ -12,7 +12,7 @@ repositories { apply from: '../opencadc.gradle' -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' diff --git a/fenwick/VERSION b/fenwick/VERSION index 9d4fb679..1ecbba0a 100644 --- a/fenwick/VERSION +++ b/fenwick/VERSION @@ -4,6 +4,6 @@ # tags with and without build number so operators use the versioned # tag but we always keep a timestamped tag in case a semantic tag gets # replaced accidentally -VER=1.0.1 +VER=1.0.2 TAGS="${VER} ${VER}-$(date --utc +"%Y%m%dT%H%M%S")" unset VER diff --git a/fenwick/build.gradle b/fenwick/build.gradle index f7feee09..640e6ba0 100644 --- a/fenwick/build.gradle +++ b/fenwick/build.gradle @@ -10,7 +10,7 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' diff --git a/minoc/build.gradle b/minoc/build.gradle index f2c7d515..1551e09e 100644 --- a/minoc/build.gradle +++ b/minoc/build.gradle @@ -26,23 +26,23 @@ war { } dependencies { - implementation 'org.opencadc:cadc-util:[1.10.2,2.0)' - implementation 'org.opencadc:cadc-log:[1.1.6,2.0)' - implementation 'org.opencadc:cadc-registry:[1.7,)' - implementation 'org.opencadc:cadc-vosi:[1.4.3,2.0)' - implementation 'org.opencadc:cadc-rest:[1.3.14,)' - implementation 'org.opencadc:cadc-cdp:[1.0,)' - implementation 'org.opencadc:cadc-data-ops-fits:[0.4.0,)' - implementation 'org.opencadc:cadc-gms:[1.0.0,)' - implementation 'org.opencadc:cadc-inventory:[1.0,2.0)' - implementation 'org.opencadc:cadc-inventory-db:[1.0,2.0)' - implementation 'org.opencadc:cadc-soda-server:[1.2.0,2.0.0)' - implementation 'org.opencadc:cadc-storage-adapter:[1.0,)' - implementation 'org.opencadc:cadc-permissions:[0.3.1,)' - implementation 'org.opencadc:cadc-permissions-client:[0.3,)' - implementation 'org.opencadc:cadc-gms:[1.0,)' + compile 'org.opencadc:cadc-util:[1.10.2,2.0)' + compile 'org.opencadc:cadc-log:[1.1.6,2.0)' + compile 'org.opencadc:cadc-registry:[1.7,)' + compile 'org.opencadc:cadc-vosi:[1.4.3,2.0)' + compile 'org.opencadc:cadc-rest:[1.3.14,)' + compile 'org.opencadc:cadc-cdp:[1.0,)' + compile 'org.opencadc:cadc-data-ops-fits:[0.4.0,)' + compile 'org.opencadc:cadc-gms:[1.0.0,)' + compile 'org.opencadc:cadc-inventory:[1.0,2.0)' + compile 'org.opencadc:cadc-inventory-db:[1.0,2.0)' + compile 'org.opencadc:cadc-soda-server:[1.2.0,2.0.0)' + compile 'org.opencadc:cadc-storage-adapter:[1.0,)' + compile 'org.opencadc:cadc-permissions:[0.3.1,)' + compile 'org.opencadc:cadc-permissions-client:[0.3,)' + compile 'org.opencadc:cadc-gms:[1.0,)' - implementation 'gov.nasa.gsfc.heasarc:nom-tam-fits:1.20.0' + compile 'gov.nasa.gsfc.heasarc:nom-tam-fits:1.20.0' testImplementation 'junit:junit:[4.0,)' testImplementation 'org.opencadc:cadc-storage-adapter-fs:[0.9.3,)' @@ -51,7 +51,6 @@ dependencies { runtimeOnly 'org.opencadc:cadc-access-control-identity:[1.2.1,2.0)' runtimeOnly 'org.opencadc:cadc-storage-adapter-fs:[0.9.3,)' - runtimeOnly 'org.opencadc:cadc-storage-adapter-ad:[0.7.0,)' runtimeOnly 'org.opencadc:cadc-storage-adapter-swift:[0.8.7,)' } diff --git a/ratik/VERSION b/ratik/VERSION index 9d4fb679..1ecbba0a 100644 --- a/ratik/VERSION +++ b/ratik/VERSION @@ -4,6 +4,6 @@ # tags with and without build number so operators use the versioned # tag but we always keep a timestamped tag in case a semantic tag gets # replaced accidentally -VER=1.0.1 +VER=1.0.2 TAGS="${VER} ${VER}-$(date --utc +"%Y%m%dT%H%M%S")" unset VER diff --git a/ratik/build.gradle b/ratik/build.gradle index 79137835..4c8d1477 100644 --- a/ratik/build.gradle +++ b/ratik/build.gradle @@ -10,7 +10,7 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' diff --git a/raven/VERSION b/raven/VERSION index 42680703..29770a8a 100644 --- a/raven/VERSION +++ b/raven/VERSION @@ -2,6 +2,6 @@ # semantic version tag: major.minor[.patch] # build version tag: timestamp # tag: {semantic}-{build} -VER=1.0.1 +VER=1.0.2 TAGS="${VER} ${VER}-$(date --utc +"%Y%m%dT%H%M%S")" unset VER diff --git a/raven/build.gradle b/raven/build.gradle index 2586886c..c278b5e9 100644 --- a/raven/build.gradle +++ b/raven/build.gradle @@ -12,7 +12,7 @@ repositories { apply from: '../opencadc.gradle' -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' diff --git a/ringhold/VERSION b/ringhold/VERSION index d849b8f3..03dfe36f 100644 --- a/ringhold/VERSION +++ b/ringhold/VERSION @@ -1,6 +1,6 @@ ## deployable containers have a semantic and build tag # semantic version tag: major.minor[.patch] # build version tag: timestamp -VER=1.0.0 +VER=1.0.1 TAGS="${VER} ${VER}-$(date --utc +"%Y%m%dT%H%M%S")" unset VER diff --git a/ringhold/build.gradle b/ringhold/build.gradle index 685a569d..92be3cbc 100644 --- a/ringhold/build.gradle +++ b/ringhold/build.gradle @@ -10,7 +10,7 @@ repositories { mavenLocal() } -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' diff --git a/tantar/VERSION b/tantar/VERSION index 0cb76787..cbf79bc8 100644 --- a/tantar/VERSION +++ b/tantar/VERSION @@ -1,6 +1,6 @@ ## deployable containers have a semantic and build tag # semantic version tag: major.minor[.patch] # build version tag: timestamp -VER=1.0.2 +VER=1.0.3 TAGS="${VER} ${VER}-$(date --utc +"%Y%m%dT%H%M%S")" unset VER diff --git a/tantar/build.gradle b/tantar/build.gradle index 4f38b15b..92cd21b2 100644 --- a/tantar/build.gradle +++ b/tantar/build.gradle @@ -12,7 +12,7 @@ repositories { apply from: '../opencadc.gradle' -sourceCompatibility = 1.8 +sourceCompatibility = 11 group = 'org.opencadc' @@ -27,7 +27,6 @@ dependencies { compile 'org.opencadc:cadc-storage-adapter:[1.0,)' runtime 'org.opencadc:cadc-storage-adapter-fs:[0.9.3,)' - runtime 'org.opencadc:cadc-storage-adapter-ad:[0.6.3,)' runtime 'org.opencadc:cadc-storage-adapter-swift:[0.8.7,)' testCompile 'junit:junit:[4.12,5.0)'