forked from hackvertor/hackvertor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (55 loc) · 1.84 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
apply plugin: 'java'
targetCompatibility = 1.8
sourceCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
}
dependencies {
implementation 'net.portswigger.burp.extender:burp-extender-api:1.7.22'
implementation 'commons-codec:commons-codec:1.15'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.unbescape:unbescape:1.1.6.RELEASE'
implementation 'org.bouncycastle:bcpkix-jdk15on:1.70'
implementation 'com.auth0:java-jwt:4.3.0'
implementation 'org.json:json:20230227'
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.apache.commons:commons-compress:1.22'
implementation 'org.brotli:dec:0.1.2'
implementation 'org.python:jython-standalone:2.7.3b1'
implementation 'bsf:bsf:2.4.0'
implementation 'org.apache-extras.beanshell:bsh:2.0b6'
implementation 'org.codehaus.groovy:groovy-all:3.0.16'
implementation 'com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0'
implementation 'com.github.javafaker:javafaker:1.0.2'
implementation 'com.fifesoft:rsyntaxtextarea:3.3.1'
implementation 'com.fifesoft:autocomplete:3.3.1'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'src'
}
}
}
jar{
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
archivesBaseName = project.name + '-all'
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"
}
}
tasks.withType(Jar) {
destinationDirectory = file("$rootDir/releases/")
}