You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
398 B
Groovy
15 lines
398 B
Groovy
apply plugin: 'java'
|
|
|
|
jar() {
|
|
manifest {
|
|
attributes 'Implementation-Title': 'Gradle Quickstart',
|
|
'Main-Class': 'com.android.verity.BootSignature'
|
|
}
|
|
from {configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }} //pack dependent jar
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':bouncycastle:bcpkix')
|
|
compile project(':bouncycastle:bcprov')
|
|
}
|