Skip to content

Commit b1485d6

Browse files
author
Will Strei
committed
Renamed files to match PortSwigger repo, and updated build.gradle
1 parent 95535c7 commit b1485d6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+28
-3967
lines changed

build.gradle

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
apply plugin: 'java'
2+
3+
repositories {
4+
mavenCentral()
5+
}
6+
7+
dependencies {
8+
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.22'
9+
compile 'com.google.code.gson:gson:2.8.6'
10+
}
11+
12+
sourceSets {
13+
main {
14+
java {
15+
srcDir 'src'
16+
}
17+
resources {
18+
srcDir 'resources'
19+
}
20+
}
21+
}
22+
23+
task fatJar(type: Jar) {
24+
baseName = project.name + '-all'
25+
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
26+
with jar
27+
}
-905 Bytes
Binary file not shown.

pom.xml

Lines changed: 0 additions & 50 deletions
This file was deleted.

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'token-extractor'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)