Magisk/signing/build.gradle

39 lines
716 B
Groovy
Raw Normal View History

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 {
2019-01-30 09:10:12 +01:00
attributes 'Main-Class': 'com.topjohnwu.signing.ZipSigner'
2017-12-04 08:16:41 +01:00
}
}
shadowJar {
baseName = 'zipsigner'
classifier = null
version = 3.0
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-10-28 21:05:32 +01:00
implementation 'org.bouncycastle:bcprov-jdk15on:1.60'
implementation 'org.bouncycastle:bcpkix-jdk15on:1.60'
2017-12-04 08:16:41 +01:00
}