19 lines
450 B
Groovy
19 lines
450 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'de.jottyfan.csv2camt'
|
|
version '0.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.apache.commons:commons-csv:1.12.0'
|
|
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.2'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.1'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
|
|
} |