forked from GoSecure/burp-fuzzy-encoding-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (28 loc) · 767 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
apply plugin: 'java'
apply plugin: 'kotlin'
//sourceCompatibility = 1.8
buildscript {
ext.kotlin_version = '1.3.21'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.apache.commons:commons-lang3:3.7"
compile "org.unbescape:unbescape:1.1.5.RELEASE"
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.22'
compile 'com.esotericsoftware:minlog:1.3'
testCompile "org.testng:testng:6.9.10"
}
jar {
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}