-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (37 loc) · 1.42 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
43
44
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "6.1.0"
}
group 'de.gematik'
version = file('src/main/resources/version.txt').text.trim()
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
jar {
manifest {
attributes 'Main-Class': 'de.gematik.demis.Start'
}
}
dependencies {
testCompile 'org.junit.jupiter:junit-jupiter:5.5.2'
testCompile group: 'org.junit.platform', name: 'junit-platform-runner', version: '1.7.0'
testCompile group: 'org.mockito', name: 'mockito-core', version: '3.5.13'
implementation 'org.assertj:assertj-swing-jide:3.17.1'
implementation 'org.assertj:assertj-swing-junit-4.5:1.2.0'
implementation 'org.apache.commons:commons-io:1.3.2'
implementation group: 'commons-validator', name: 'commons-validator', version: '1.7'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
implementation group: 'com.formdev', name: 'flatlaf', version: '0.43'
implementation group: 'com.formdev', name: 'flatlaf-intellij-themes', version: '0.43'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.11.3'
compileOnly 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
}
shadowJar {
archiveBaseName.set('Demis-Adapter-Configuration-UI')
archiveClassifier.set('')
archiveVersion.set('')
}