-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.gradle
42 lines (33 loc) · 1.24 KB
/
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
40
41
42
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
dependencies {
// required for the ISO 20022 model
implementation 'com.sun.xml.bind:jaxb-impl:4.0.5'
// common dependency for all packages
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'org.apache.commons:commons-text:1.11.0'
implementation 'com.google.code.gson:gson:2.11.0'
// Optional for creating or verifying the LAU signatures in DataPDU messages
implementation 'org.apache.santuario:xmlsec:3.0.4'
// Required to use the BIC directory
// A default directory is provided in pw-swift-data-jar and can be updated with the bin/bicimporter tool
implementation 'org.apache.derby:derby:10.15.2.0'
implementation 'org.apache.derby:derbytools:10.15.2.0'
implementation 'org.apache.derby:derbyclient:10.15.2.0'
// Required by the MyFormat module only
implementation ('org.apache.poi:poi:3.17') {
transitive = false
}
// replace with your trial version:
implementation fileTree(dir: 'lib', include: '*.jar')
testImplementation('org.junit.jupiter:junit-jupiter:5.8.2')
}