-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (35 loc) · 947 Bytes
/
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
repositories {
jcenter()
mavenLocal()
mavenCentral()
}
buildscript {
repositories {
jcenter()
mavenLocal()
mavenCentral()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
}
apply plugin: 'idea'
apply plugin: 'java'
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.24'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.24'
compile group: 'net.sourceforge.htmlunit', name: 'htmlunit', version:'2.25'
testCompile group: 'org.testng', name: 'testng', version: '6.11'
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.14'
}
apply plugin: 'com.github.johnrengelman.shadow'
shadowJar {
baseName = 'proxytester'
classifier = null
version = null
}
jar {
manifest {
attributes "Main-Class": "com.cyberneticscore.realityparser.proxytester.MainClass"
}
}