2017-12-04 08:16:41 +01:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
sourceCompatibility = "1.8"
|
|
|
|
targetCompatibility = "1.8"
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
2018-01-27 01:34:40 +01:00
|
|
|
attributes 'Main-Class': 'com.topjohnwu.utils.ZipSigner'
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
baseName = 'zipsigner'
|
|
|
|
classifier = null
|
2018-05-20 09:24:47 +02:00
|
|
|
version = 2.2
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2018-05-20 09:24:47 +02:00
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2018-05-20 09:24:47 +02:00
|
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.59'
|
|
|
|
implementation 'org.bouncycastle:bcpkix-jdk15on:1.59'
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|