Projects STRLCPY param-miner Commits 711f4c5b
🤬
  • ■ ■ ■ ■ ■ ■
    build.gradle
    skipped 4 lines
    5 5  }
    6 6   
    7 7  dependencies {
    8  - compile 'net.portswigger.burp.extender:burp-extender-api:1.7.13'
    9  - compile 'org.apache.commons:commons-lang3:3.5'
    10  - compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
    11  - compile 'com.google.code.gson:gson:2.8.1'
    12  - compile 'com.fasterxml.jackson.core:jackson-databind:2.9.0.pr4'
    13  - compile 'org.jsoup:jsoup:1.8.1'
    14  - compile files('albinowaxUtils-all.jar')
     8 + implementation 'net.portswigger.burp.extender:burp-extender-api:1.7.13'
     9 + implementation 'org.apache.commons:commons-lang3:3.5'
     10 + implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
     11 + implementation 'com.google.code.gson:gson:2.8.1'
     12 + implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.0.pr4'
     13 + implementation 'org.jsoup:jsoup:1.8.1'
     14 + implementation files('albinowaxUtils-all.jar')
    15 15  }
    16 16   
    17 17  sourceSets {
    skipped 8 lines
    26 26  }
    27 27   
    28 28  task fatJar(type: Jar) {
    29  - 
     29 + duplicatesStrategy = DuplicatesStrategy.INCLUDE
    30 30   baseName = project.name + '-all'
    31  - from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
     31 + from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
    32 32   with jar
    33 33  }
    34 34   
    skipped 4 lines
Please wait...
Page is in error, reload to recover