forked from infobyte/faraday_burp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
43 lines (33 loc) · 950 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
/*
* Faraday Penetration Test IDE Extension for Burp
* Copyright (C) 2019 Infobyte LLC (http://www.infobytesec.com/)
* See the file 'LICENSE' for the license information
*/
plugins {
id 'java'
}
group = 'burp'
version = 'v2.9'
archivesBaseName = 'faraday-burp'
/*
sourceCompatibility = 1.8
targetCompatibility = 1.8
*/
repositories {
mavenCentral()
}
dependencies {
implementation 'net.portswigger.burp.extender:burp-extender-api:1.7.22'
implementation group: 'io.github.openfeign', name: 'feign-core', version: '10.1.0'
implementation group: 'io.github.openfeign', name: 'feign-gson', version: '10.1.0'
implementation group: 'com.github.zafarkhaja', name: 'java-semver', version: '0.9.0'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
task fatJar(type: Jar) {
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}