-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
35 lines (26 loc) · 928 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
plugins {
id 'java'
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
version = '1.2.1'
dependencies {
compile 'joda-time:joda-time:2.10.3'
// https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.62'
// https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on
compile group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.62'
// https://mvnrepository.com/artifact/com.github.stefanbirkner/system-rules
testCompile group: 'com.github.stefanbirkner', name: 'system-rules', version: '1.19.0'
// https://github.com/google/gson
implementation 'com.google.code.gson:gson:2.8.5'
}
group 'tyrannosaurus-becks'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}