Skip to content

Commit

Permalink
fix incorrect use of double-quote in build files
Browse files Browse the repository at this point in the history
cadc-adql: add missing dependencies
  • Loading branch information
pdowler committed Feb 27, 2025
1 parent ade1bd5 commit 65e2d2b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion cadc-adql/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "java-library"
id 'java-library'
id 'maven-publish'
id 'checkstyle'
}
Expand Down Expand Up @@ -27,6 +27,9 @@ dependencies {
implementation 'org.opencadc:cadc-tap-server:[1.1,)'
implementation 'org.opencadc:cadc-tap-schema:[1.1.28,)'
implementation 'org.opencadc:cadc-jsqlparser-compat:[0.6.4,)'
implementation 'org.opencadc:cadc-cdp:[1.4.0,)'
implementation 'org.opencadc:cadc-uws:[1.0,2.0)'
implementation 'org.opencadc:cadc-uws-server:[1.2.7,)'

testImplementation 'junit:junit:4.13'
}
2 changes: 1 addition & 1 deletion cadc-jsqlparser-compat/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "java-library"
id 'java-library'
id 'maven-publish'
id 'checkstyle'
}
Expand Down
2 changes: 1 addition & 1 deletion cadc-tap-schema/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sourceCompatibility = 11

group = 'org.opencadc'

version = '1.2.4'
version = '1.2.5'

description = 'OpenCADC TAP-1.1 tap schema server library'
def git_url = 'https://github.com/opencadc/tap'
Expand Down
2 changes: 1 addition & 1 deletion cadc-tap-server/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "java-library"
id 'java-library'
id 'maven-publish'
id 'checkstyle'
}
Expand Down
2 changes: 1 addition & 1 deletion cadc-tap-tmp/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "java-library"
id 'java-library'
id 'maven-publish'
id 'checkstyle'
}
Expand Down
2 changes: 1 addition & 1 deletion cadc-tap/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "java-library"
id 'java-library'
id 'maven-publish'
id 'checkstyle'
}
Expand Down
2 changes: 1 addition & 1 deletion cadc-test-tap/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "java-library"
id 'java-library'
id 'maven-publish'
id 'checkstyle'
}
Expand Down

0 comments on commit 65e2d2b

Please sign in to comment.