-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
executable file
·38 lines (31 loc) · 1005 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
plugins {
id 'io.franzbecker.gradle-lombok' version '1.14'
id 'java'
}
group 'phpscan'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
lombok {
version = '1.18.4'
sha256 = ""
}
dependencies {
compile group: 'commons-io', name: 'commons-io', version: '2.4'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.3.2'
compile group: 'com.google.guava', name: 'guava', version: '18.0'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
compile group: 'org.ini4j', name: 'ini4j', version: '0.5.4'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.3'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.3'
}
apply plugin: 'application'
mainClassName = 'net.katagaitai.phpscan.Main'
jar {
manifest {
attributes 'Main-Class': 'net.katagaitai.phpscan.Main '
}
}