Skip to content

Commit

Permalink
Correct dependencies in build.
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyD97 committed Jan 17, 2022
1 parent 5d4e802 commit f043c2b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ repositories {
}

dependencies {
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.22'
compile 'org.swinglabs:swingx:1.6.1'
compile 'com.github.CoreyD97:BurpExtenderUtilities:e800fd2d'
compile 'com.google.code.gson:gson:2.8.2'
compile 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.5.2'
compile 'org.apache.httpcomponents:httpclient:4.5.6'
compile 'org.apache.commons:commons-text:1.7'
compile 'org.apache.logging.log4j:log4j-core:2.17.0'
compileOnly 'net.portswigger.burp.extender:burp-extender-api:1.7.22'
implementation 'org.swinglabs:swingx:1.6.1'
implementation 'com.github.CoreyD97:BurpExtenderUtilities:e800fd2d'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.5.2'
implementation 'org.apache.httpcomponents:httpclient:4.5.6'
implementation 'org.apache.commons:commons-text:1.7'
implementation 'org.apache.logging.log4j:log4j-core:2.17.0'
// Test on unix system
testRuntime files('/home/corey/BurpSuitePro/burpsuite_pro.jar')
// Test on Windows System
Expand All @@ -28,7 +28,7 @@ dependencies {
jar{
baseName = project.name
from {
(configurations.compile).collect { it.isDirectory() ? it : zipTree(it) }
(configurations.runtimeClasspath).collect { it.isDirectory() ? it : zipTree(it) }
}{
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
Expand Down

0 comments on commit f043c2b

Please # to comment.