-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (23 loc) · 804 Bytes
/
build.gradle
File metadata and controls
30 lines (23 loc) · 804 Bytes
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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/net.portswigger.burp.extender/burp-extender-api
implementation 'net.portswigger.burp.extender:burp-extender-api:2.3'
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.14'
// https://mvnrepository.com/artifact/com.intellij/forms_rt
implementation 'com.intellij:forms_rt:7.0.3'
// https://mvnrepository.com/artifact/org.json/json
implementation 'org.json:json:20240303'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}