mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-12 23:42:06 +01:00
30 lines
611 B
Groovy
30 lines
611 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'maven'
|
|
id 'maven-publish'
|
|
id 'ru.vyarus.animalsniffer' version '1.4.3'
|
|
}
|
|
|
|
apply plugin: 'ru.vyarus.animalsniffer'
|
|
dependencies {
|
|
signature "net.sf.androidscents.signature:android-api-level-9:2.3.1_r2@signature"
|
|
}
|
|
|
|
animalsniffer {
|
|
sourceSets = [sourceSets.main]
|
|
}
|
|
|
|
group 'de.vanitasvitae.crypto'
|
|
version '0.1-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
compile 'org.bouncycastle:bcprov-jdk15on:1.59'
|
|
compile 'org.bouncycastle:bcpg-jdk15on:1.59'
|
|
}
|