Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.gradle
.idea
**/build
14 changes: 9 additions & 5 deletions caom2-meta-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# December 11th, 2017
# CAOM-2 Meta UI (1.1.0)

* Create link from Provenance reference URL on page.
* Code clean up.
* Browser test updates.
* Add identifying CSS classes to HTML Table rows.
## April 14th, 2025 (1.1.0)
- Critical bug fix for Tomcat.

## December 11th, 2017
- Create link from Provenance reference URL on page.
- Code clean up.
- Browser test updates.
- Add identifying CSS classes to HTML Table rows.
2 changes: 1 addition & 1 deletion caom2-meta-ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cadc-tomcat:1
FROM images.opencadc.org/library/cadc-tomcat:1.3

# Web resources are in the caom2-search-server JAR file, so enable scanning of it.
RUN sed -i 's/tomcat.util.scan.StandardJarScanFilter.jarsToScan=\\/tomcat.util.scan.StandardJarScanFilter.jarsToScan=\\\ncaom2-ui-server*\.jar,\\/' /etc/tomcat/catalina.properties
Expand Down
2 changes: 1 addition & 1 deletion caom2-meta-ui/VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## deployable containers have a semantic and build tag
# semantic version tag: major.minor[.patch]
# build version tag: timestamp
TAGS="1.0-$(date -u +"%Y%m%dT%H%M%S")"
TAGS="1.1.0 1.1.0-$(date -u +"%Y%m%dT%H%M%S")"
4 changes: 3 additions & 1 deletion caom2-meta-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ dependencies {

apply from: '../int_test.gradle'

sourceCompatibility = 1.8
java {
sourceCompatibility = JavaVersion.VERSION_11
}

def git_url = 'https://github.com/opencadc/caom2ui'

Expand Down
15 changes: 10 additions & 5 deletions caom2-search-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,24 @@ repositories {
}

dependencies {
implementation 'org.jdom:jdom2:2.0.6'
implementation 'commons-io:commons-io:2.6'
implementation 'org.jdom:jdom2:2.0.6.1'
implementation 'commons-io:commons-io:2.14.0'

implementation 'org.opencadc:cadc-dali:[1.2,1.3)'
implementation 'org.opencadc:cadc-util:[1.5.7,2.0)'
implementation 'org.opencadc:cadc-uws-server:[1.2.5,1.3)'
implementation 'org.opencadc:cadc-dali:[1.2.25,1.3.0)'
implementation 'org.opencadc:cadc-registry:[1.7.7,1.8.0)'
implementation 'org.opencadc:cadc-util:[1.12.2,2.0)'
implementation 'org.opencadc:cadc-uws-server:[1.2.24,1.3)'
implementation 'org.opencadc:jsky:[1.0,2.0)'

testImplementation 'junit:junit:[4.0,5.0)'
testImplementation 'org.mockito:mockito-core:[2.0,)'
testImplementation 'org.easymock:easymock:[3.6,)'
}

java {
sourceCompatibility = JavaVersion.VERSION_11
}

apply from: '../opencadc.gradle'

def git_url = 'https://github.com/opencadc/caom2ui'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

import ca.nrc.cadc.astro.CoordUtil;
import ca.nrc.cadc.search.nameresolver.exception.ClientException;
import ca.nrc.cadc.stc.CoordPair;

import java.util.Properties;

Expand Down
1 change: 0 additions & 1 deletion opencadc.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
sourceCompatibility = 1.8
group = 'org.opencadc'

def git_url = 'https://github.com/opencadc/caom2ui'
Expand Down