-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (30 loc) · 824 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
39
plugins {
id 'java'
id 'application'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = 'name.neuhalfen.projects.crypto.contentencryption.example.Main'
version = '1.0.0'
def jarAttributes = ['Implementation-Title': 'Contentencryption Examples',
'Implementation-Version': version,
'Main-Class': mainClassName ]
jar {
manifest {
attributes jarAttributes
}
}
repositories {
mavenLocal()
jcenter()
}
dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.56'
compile 'org.bouncycastle:bcpg-jdk15on:1.56'
compile 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.+'
compile 'org.slf4j:slf4j-api:1.7.22'
compile 'ch.qos.logback:logback-classic:1.2.1'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.7'
}