-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
32 lines (26 loc) · 783 Bytes
/
build.gradle.kts
File metadata and controls
32 lines (26 loc) · 783 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
plugins {
idea
java
application
distribution
id("org.jetbrains.kotlin.jvm").version("1.3.21")
}
configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.apache.meecrowave:meecrowave-core:1.2.7")
implementation("commons-cli:commons-cli:1.4")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
}
defaultTasks("installDist", "distZip", "distTar")
val mainAppClass: String by project.extra { "com.github.daggerok.App" }
application {
mainClassName = mainAppClass
}