bcsmime_demo/build.gradle
Jan Dittberner 26bc7c2abe Update to Bouncy Castle 1.54
This commit updates the Bouncy Castle dependencies to version 1.54. The
gradle version for the wrapper has been updated to 2.13.
2016-05-21 22:43:06 +02:00

23 lines
656 B
Groovy

apply plugin: 'java'
project.version = '0.3-SNAPSHOT'
project.description = '''
Demonstrate how to perform S/MIME encryption and decryption of mails using BouncyCastle.
'''
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.bouncycastle', name: 'bcmail-jdk15on', version: '1.54'
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.54'
compile group: 'javax.mail', name: 'javax.mail-api', version: '1.5.4'
compile group: 'com.sun.mail', name: 'javax.mail', version: '1.5.4'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.13'
}