-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
40 lines (34 loc) · 921 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
40
plugins {
id 'java'
}
group 'com.forcesunseen'
version '0.1'
targetCompatibility = '1.15'
sourceCompatibility = '1.15'
repositories {
mavenCentral()
maven {
url "https://jitpack.io"
}
}
dependencies {
implementation 'net.portswigger.burp.extender:burp-extender-api:2.3'
implementation 'com.github.mikaelgrev.miglayout:miglayout-swing:V5.3'
implementation 'com.graphql-java:graphql-java:18.2'
implementation 'org.json:json:20220320'
implementation 'com.google.code.gson:gson:2.9.0'
}
jar{
configurations.implementation.canBeResolved = true
from {
(configurations.implementation).collect { it.isDirectory() ? it : zipTree(it) }
}{
duplicatesStrategy = 'include'
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
}
tasks.withType(Jar) {
destinationDirectory = file("$rootDir/releases")
}