-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
32 lines (23 loc) · 926 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
plugins {
id 'java'
}
group 'com.softwareverde'
version '3.2.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.68'
implementation group: 'org.bouncycastle', name: 'bcpg-jdk15on', version: '1.68'
implementation group: 'com.github.softwareverde', name: 'java-util', version: 'v2.7.3'
implementation group: 'com.github.softwareverde', name: 'java-logging', version: 'v2.2.0'
implementation group: 'commons-codec', name: 'commons-codec', version: '1.14'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
test {
maxHeapSize = "4096m"
jvmArgs "-XX:MaxMetaspaceSize=4096m"
}