-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
50 lines (31 loc) · 1.42 KB
/
build.gradle
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'war'
repositories {
maven {
url "https://repo.osgeo.org/repository/release/"
}
mavenCentral()
}
dependencies {
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.30'
compile group: 'org.glassfish.jersey.inject', name: 'jersey-hk2', version: '2.30'
compile group: 'org.glassfish.corba', name: 'glassfish-corba-omgapi', version: '4.0.2-b011'
compile group: 'com.eaio.uuid', name: 'uuid', version: '3.2'
compile group: 'jakarta.xml.bind', name: 'jakarta.xml.bind-api', version: '2.3.2'
compile group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.2'
compile group: 'org.tmatesoft.sqljet', name: 'sqljet', version: '1.1.13'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.19'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile group: 'xerces', name:'xercesImpl', version: '2.12.0'
compile 'org.apache.commons:commons-math3:3.6.1'
// i am going to want to delete the next line
//compile group: 'com.vividsolutions', name: 'jts', version: '1.13'
implementation 'org.locationtech.jts:jts-core:1.18.2'
implementation 'org.geotools:gt-shapefile:22.0'
}
war {
archiveName '../../dist/berkeleymapper.war'
}