forked from CoreyD97/Stepper
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
40 lines (33 loc) · 973 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
apply plugin: 'java'
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
maven {
url "https://jitpack.io"
}
}
dependencies {
compileOnly 'net.portswigger.burp.extender:burp-extender-api:2.3'
implementation 'com.github.CoreyD97:BurpExtenderUtilities:c03c1a2a1'
compileOnly 'com.formdev:flatlaf:3.0'
testRuntimeOnly files('/home/corey/BurpSuitePro/burpsuite_pro.jar')
}
jar{
archivesBaseName = project.name
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
from {
(configurations.runtimeClasspath).collect { it.isDirectory() ? it : zipTree(it) }
}{
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
exclude "META-INF/*.txt"
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
tasks.withType(Jar) {
destinationDir = file("$rootDir/releases")
}