-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (34 loc) · 1.2 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'application'
}
group 'fr.chuckame.marlinfw'
version '1.1.0'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
apply plugin: 'io.spring.dependency-management'
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
compile 'io.projectreactor:reactor-core'
implementation 'com.beust:jcommander:1.78'
implementation 'com.google.guava:guava:30.0-jre'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompile('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'junit', module: 'junit'
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testCompile 'io.projectreactor:reactor-test'
}
application {
mainClass = 'fr.chuckame.marlinfw.configurator.MarlinConfigurator'
applicationDefaultJvmArgs = ['-Dapp-console-name=marlin-console-configurator']
}
test {
useJUnitPlatform()
}
bootDistZip.setArchiveFileName('marlin-console-configurator.zip')