-
Notifications
You must be signed in to change notification settings - Fork 151
/
build.gradle
82 lines (54 loc) · 1.9 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
ext {
libraries = [
vertx : "3.9.3",
rxjava : "2.2.20",
gson : "2.8.6",
kotlinx_coroutines : "1.3.9",
disruptor : "3.4.2",
httpclient : "4.5.12",
okhttp : "4.9.0",
lettuce : "5.1.7.RELEASE",
htmlunit : "2.42.0",
selenium_java : "3.14.0",
guava : "29.0-jre",
phantomjsdriver : "1.4.4",
commons_pool2 : "2.8.0",
logback : "1.2.3",
proxypool : "1.1.13",
tony_common_utils : "1.2.8",
fastjson : "1.2.74",
rxcache : "1.5.1",
commons_lang3 : "3.11",
quartz : "2.3.2"
]
}
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.4.10'
ext.netdiscovery_version = '1.4.5'
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.novoda:bintray-release:0.9.2'
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
tasks.getByPath(":core:core:javadoc").enabled = false
tasks.getByPath(":core:engine:javadoc").enabled = false
tasks.getByPath("pipeline:elasticsearch:javadoc").enabled = false
tasks.getByPath(":queue:rabbitmq:javadoc").enabled = false