-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
38 lines (30 loc) · 906 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 'org.jetbrains.kotlin.jvm' version '1.9.0'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'java'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.0'
}
group = 'net.ankio'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.0'
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2"
// https://mvnrepository.com/artifact/com.google.guava/guava
implementation 'com.google.guava:guava:32.1.2-jre'
testImplementation 'org.jetbrains.kotlin:kotlin-test'
// https://mvnrepository.com/artifact/net.portswigger.burp.extender/burp-extender-api
compileOnly 'net.portswigger.burp.extender:burp-extender-api:2.3'
}
test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}
application {
mainClassName = 'MainKt'
}