forked from opencadc/vos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (24 loc) · 723 Bytes
/
build.gradle
File metadata and controls
32 lines (24 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
plugins {
id 'java-library'
id 'maven-publish'
id 'checkstyle'
}
repositories {
mavenCentral()
mavenLocal()
}
apply from: '../opencadc.gradle'
sourceCompatibility = 11
group = 'org.opencadc'
version = '2.1.14'
description = 'OpenCADC VOSpace test library'
def git_url = 'https://github.com/opencadc/vos'
dependencies {
implementation 'org.opencadc:cadc-util:[1.6,2.0)'
implementation 'org.opencadc:cadc-gms:[1.0.5,)'
implementation 'org.opencadc:cadc-vos:[2.0,)'
implementation 'org.opencadc:cadc-uws:[1.0,2.0)'
implementation 'org.opencadc:cadc-registry:[1.7.6,2.0)'
implementation 'junit:junit:[4.0,)'
implementation 'org.apache.commons:commons-compress:[1.12,)'
}