-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
69 lines (51 loc) · 2.27 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
plugins {
id 'java'
}
group 'com.atlchain'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
// IPFS
maven { url 'https://jitpack.io' }
// mavenCentral()
maven { url 'http://download.osgeo.org/webdav/geotools/'}
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'http://maven.yonyoucloud.com/nexus/content/repositories/releases/' }
}
dependencies {
// JTS
compile group: 'org.locationtech.jts', name: 'jts-core', version: '1.16.1'
// Jersey
compile group: 'org.glassfish.jersey.containers', name: 'jersey-container-grizzly2-http', version: '2.29'
compile group: 'org.glassfish.jersey.inject', name: 'jersey-hk2', version: '2.29'
compile group: 'org.glassfish.jersey.media', name: 'jersey-media-json-jackson', version: '2.29.1'
compile group: 'org.glassfish.jersey.media', name: 'jersey-media-multipart', version: '2.28'
compile group: 'org.glassfish.jersey.examples', name: 'multipart-webapp', version: '2.29'
// HttpClient
compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.10'
// Json
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.61'
// FastDFS
compile group: 'org.csource', name: 'fastdfs-client-java', version: '1.27-RELEASE'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.28'
// mongodb
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.11.0'
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
// HDFS
compile group: 'org.apache.hadoop', name: 'hadoop-client', version: '3.2.0'
// HBase
compile group: 'org.apache.hbase', name: 'hbase-client', version: '1.3.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
// gt-geojson
compile group: 'org.geotools', name: 'gt-geojson', version: '20.3'
// Fabric
compile files('libs/gt-fabric-1.0-SNAPSHOT-all.jar')
compile files('libs/atlchain-sdk-0.0.3.jar')
compile group: 'org.hyperledger.fabric-sdk-java', name: 'fabric-sdk-java', version: '1.4.1'
compile group: 'io.netty', name: 'netty-all', version: '4.1.42.Final'
// IPFS
compile group: 'com.github.ipfs', name: 'java-ipfs-api', version: 'v1.2.2'
}
//grails {
// pathingJar = true
//}