-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
86 lines (44 loc) · 2.14 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
plugins {
id 'java'
id 'application'
}
group 'com.LearningRecording.LQS'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
maven { url 'http://download.osgeo.org/webdav/geotools/' } // 专门用于 geotools
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'http://maven.yonyoucloud.com/nexus/content/repositories/releases/' }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'com.github.snowdream.android.util.concurrent', name: 'multithread', version: '1.0'
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '1.4.1'
// FastDFS
compile group: 'org.csource', name: 'fastdfs-client-java', version: '1.27-RELEASE'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
// 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'
// fabric
compile group: 'org.hyperledger.fabric-sdk-java', name: 'fabric-sdk-java', version: '1.1.0'
compile group: 'io.fabric8', name: 'fabric-api', version: '1.2.0.redhat-133'
compile files('libs/com.supermap.data.jar')
compile files('libs/com.supermap.mapping.jar')
// shp to wkb
compile group: 'org.geotools', name: 'gt-shapefile', version: '21.1'
// 解析 KML 格式数据
compile group: 'org.geotools.xsd', name: 'gt-xsd-kml', version: '21.1'
// Json
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.61'
//protobuf
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.11.1'
// Fabric 2019.12.15 区块链网络操作的
compile files('lib/atlchain-sdk-0.0.3.jar')
compile group: 'org.hyperledger.fabric-sdk-java', name: 'fabric-sdk-java', version: '1.4.4'
compile group: 'io.netty', name: 'netty-all', version: '4.1.42.Final'
}