forked from 0xDexter0us/Scavenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
28 lines (24 loc) · 954 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.5.31'
}
group 'com.dexter0us'
version '0.7.0'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.5.31"
implementation "commons-io:commons-io:2.6" //do not update, it will break
implementation "com.miglayout:miglayout-core:5.3" //do not update, it will break
implementation "com.miglayout:miglayout-swing:5.3" //do not update, it will break
implementation "net.portswigger.burp.extender:burp-extender-api:2.3"
implementation "com.google.code.gson:gson:2.8.9"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.5.2"
}
task fatJar(type: Jar) {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}