-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
26 lines (22 loc) · 888 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
}
group 'com.dexter0us.uproot-js'
version '1.1.0'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
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 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.6.0'
}
task fatJar(type: Jar) {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}