forked from neuhalje/bouncy-gpg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (29 loc) · 800 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
plugins {
id 'java'
id 'application'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = 'name.neuhalfen.projects.crypto.bouncycastle.openpgp.example.DecryptMain'
version = '1.0.0'
jar {
manifest {
attributes 'Implementation-Title': 'Bouncycastle Examples: Decryption',
'Implementation-Version': version,
'Main-Class': mainClassName
}
}
repositories {
mavenLocal()
jcenter()
}
dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.67'
compile 'org.bouncycastle:bcpg-jdk15on:1.67'
compile 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.3.0'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'ch.qos.logback:logback-classic:1.2.3'
}
wrapper{
gradleVersion = '4.10.2'
}