-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-dependencies.gradle.bk
More file actions
114 lines (94 loc) · 4.48 KB
/
build-dependencies.gradle.bk
File metadata and controls
114 lines (94 loc) · 4.48 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
ext {
// spring libs
springVersion = "5.0.7.RELEASE"
springSessionVersion = "1.3.1.RELEASE"
// google libs
guavaVersion = "23.0"
grpcVersion = "1.12.0"
protobufVersion = "3.5.1"
protobufVersion = "3.5.1"
protobufJavaFormatVersion = "1.4"
// coreos libs
etcd4jVersion = "2.16.0"
// google libs
groovyVersion = "3.0.0-alpha-2"
// log libs
slf4jVersion = "1.7.21"
logbackVersion = "1.2.3"
// netty libs
nettyNativeVersion = "2.0.7.Final"
nettyHandlerVersion = "4.1.22.Final"
// json libs
fastjsonVersion = "1.2.30"
// test libs
testngVersion = "6.11"
// database libs
mysqlConnectorVersion = "5.1.34"
// nosql libs
jedisVersion = "2.9.0"
// other libs
lombokVersion = "1.16.16"
servletVersion = "3.1.0"
validator = "5.4.1.Final"
influxdbVersion = "2.5"
lib = [
grpc : [
protobuf: "io.grpc:grpc-protobuf:$grpcVersion",
core : "io.grpc:grpc-core:$grpcVersion",
stub : "io.grpc:grpc-stub:$grpcVersion",
auth : "io.grpc:grpc-auth:$grpcVersion",
netty : "io.grpc:grpc-netty:$grpcVersion",
nettyShaded : "io.grpc:grpc-netty-shaded:$grpcVersion"
],
netty : [
native : "io.netty:netty-tcnative:$nettyNativeVersion",
nativeBoringssl : "io.netty:netty-tcnative-boringssl-static:$nettyNativeVersion",
handler: "io.netty:netty-handler:$nettyHandlerVersion",
nettyCodecHttp: "io.netty:netty-codec-http:$nettyHandlerVersion",
nettyCodecHttp2: "io.netty:netty-codec-http2:$nettyHandlerVersion"
],
protobuf : [
java : "com.google.protobuf:protobuf-java:$protobufVersion",
protoc: "com.google.protobuf:protoc:$protobufVersion",
format: "com.googlecode.protobuf-java-format:protobuf-java-format:$protobufJavaFormatVersion"
],
etcd4j : "org.mousio:etcd4j:$etcd4jVersion",
spring : [
boot: [
dependencies: "org.springframework.boot:spring-boot-dependencies:$springBootVersion",
starter : [
core : "org.springframework.boot:spring-boot-starter:$springBootVersion",
test : "org.springframework.boot:spring-boot-starter-test:$springBootVersion",
cache : "org.springframework.boot:spring-boot-starter-cache:$springBootVersion",
hateoas: "org.springframework.boot:spring-boot-starter-hateoas:$springBootVersion",
data : [
mongodb: "org.springframework.boot:spring-boot-starter-data-mongodb:$springBootVersion",
rest : "org.springframework.boot:spring-boot-starter-data-rest:$springBootVersion",
jpa : "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
]
]
],
],
validator: "org.hibernate:hibernate-validator:$validator",
servlet : "javax.servlet:javax.servlet-api:$servletVersion",
testng : "org.testng:testng:$testngVersion",
slf4j : "org.slf4j:slf4j-api:$slf4jVersion",
logback : [
core : "ch.qos.logback:logback-core:$logbackVersion",
classic: "ch.qos.logback:logback-classic:$logbackVersion"
],
lombok : "org.projectlombok:lombok:$lombokVersion",
fastjson : "com.alibaba:fastjson:$fastjsonVersion",
influxdb : "org.influxdb:influxdb-java:$influxdbVersion",
redis : "redis.clients:jedis:$jedisVersion",
mysql : "mysql:mysql-connector-java:$mysqlConnectorVersion",
apache : [
commons: [
lang3: "org.apache.commons:commons-lang3:3.7",
pool2: "org.apache.commons:commons-pool2:2.5.0"
]
],
groovy : "org.codehaus.groovy:groovy-all:$groovyVersion",
guava : "com.google.guava:guava:$guavaVersion"
]
}