1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-23 20:14:49 +02:00
pgpainless/build.gradle

44 lines
827 B
Groovy
Raw Normal View History

2018-06-02 21:21:35 +02:00
plugins {
id 'java'
2018-06-07 18:11:08 +02:00
id 'maven'
id 'maven-publish'
id 'ru.vyarus.animalsniffer' version '1.4.3'
}
2018-06-28 17:12:15 +02:00
apply plugin: 'eclipse'
apply plugin: 'ru.vyarus.animalsniffer'
dependencies {
signature "net.sf.androidscents.signature:android-api-level-9:2.3.1_r2@signature"
}
animalsniffer {
sourceSets = [sourceSets.main]
2018-06-02 21:21:35 +02:00
}
2018-07-02 21:40:59 +02:00
apply plugin: 'checkstyle'
checkstyle {
configFile = 'config/checkstyle.xml' as File
toolVersion = '8.10'
}
group 'org.pgpainless'
2018-06-02 21:21:35 +02:00
version '0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
/*
compile 'org.bouncycastle:bcprov-debug-jdk15on:1.60'
/*/
2018-07-09 10:47:41 +02:00
compile 'org.bouncycastle:bcprov-jdk15on:1.60'
//*/
2018-07-09 10:47:41 +02:00
compile 'org.bouncycastle:bcpg-jdk15on:1.60'
2018-06-02 21:21:35 +02:00
}