34 lines
743 B
Groovy
34 lines
743 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
id 'com.github.johnrengelman.shadow' version '8.0.0'
|
|
}
|
|
|
|
group 'de.jottyfan.csv2camt'
|
|
version '0.0.1'
|
|
|
|
mainClassName = 'de.jottyfan.csv2camt.Main'
|
|
|
|
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'
|
|
}
|
|
|
|
shadowJar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': mainClassName,
|
|
'Implementation-Title': project.name,
|
|
'Implementation-Version': version
|
|
)
|
|
}
|
|
}
|