forked from fengzhizi715/NetDiscovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
76 lines (49 loc) · 1.6 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
ext {
libraries = [
vertx : "3.7.0",
rxjava : "2.2.8",
kotlinx_coroutines : "1.2.0",
disruptor : "3.4.2",
httpclient : "4.5.2",
okhttp : "3.11.0",
lettuce : "5.1.3.RELEASE",
htmlunit : "2.31",
selenium_java : "3.14.0",
phantomjsdriver : "1.4.4",
commons_pool2 : "2.6.0",
lombok : "1.18.0",
logback : "1.2.3",
proxypool : "1.1.11",
tony_common_utils : "1.2.8",
fastjson : "1.2.56",
rxcache : "1.4.0",
commons_lang3 : "3.9",
quartz : "2.3.1"
]
}
group 'cn.netdiscovery'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
buildscript {
ext.kotlin_version = '1.3.30'
ext.netdiscovery_version = '1.1.0'
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.novoda:bintray-release:0.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
tasks.getByPath(":example:compileJava").enabled = false