-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
38 lines (29 loc) · 813 Bytes
/
build.gradle.kts
File metadata and controls
38 lines (29 loc) · 813 Bytes
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
import org.gradle.api.JavaVersion.VERSION_1_8
group = "com.github.mbto.cutimage"
version = "2.0"
plugins {
java
application
}
repositories {
jcenter()
}
tasks {
compileJava { options.encoding = "UTF-8" }
compileTestJava { options.encoding = "UTF-8" }
}
dependencies {
compile("com.beust:jcommander:1.78")
val lombokVer = "1.18.12"
compileOnly("org.projectlombok:lombok:$lombokVer");
annotationProcessor("org.projectlombok:lombok:$lombokVer");
testCompile("org.projectlombok:lombok:$lombokVer");
testAnnotationProcessor("org.projectlombok:lombok:$lombokVer");
testCompile("junit:junit:4.13.2")
}
application {
mainClassName = "com.github.mbto.cutimage.Application"
configure<JavaPluginConvention> {
sourceCompatibility = VERSION_1_8
}
}