-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
44 lines (36 loc) · 981 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
41
42
43
44
plugins {
id 'java'
}
group = 'net.portswigger'
version = '1.2.2'
repositories {
mavenLocal()
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
dependencies {
compileOnly "net.portswigger.burp.extensions:montoya-api:${extender_version}"
implementation (
'org.python:jython-standalone:2.7.3',
'com.fifesoft:rsyntaxtextarea:3.3.4'
)
testImplementation(
"net.portswigger.burp.extensions:montoya-api:${extender_version}",
'org.junit.jupiter:junit-jupiter:5.10.1',
'org.assertj:assertj-core:3.24.2',
'org.mockito:mockito-core:5.8.0'
)
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'implementation-version': "${version}"
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
}