forked from aress31/openapi-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
29 lines (24 loc) · 1.01 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
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/io.swagger.parser.v3/swagger-parser
compile group: 'io.swagger.parser.v3', name: 'swagger-parser', version: '2.0.2'
// https://mvnrepository.com/artifact/net.portswigger.extender/burp-extender-api
compile group: 'net.portswigger.burp.extender', name: 'burp-extender-api', version: '1.7.22'
// https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.2'
// https://mvnrepository.com/artifact/junit/junit
testCompile 'junit:junit:4.12'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-simple
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
}
test {
testLogging.showStandardStreams = true
}
task fatJar(type: Jar) {
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}