18 lines
243 B
Kotlin
18 lines
243 B
Kotlin
plugins {
|
|
java
|
|
application
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.google.guava:guava:28.1-jre")
|
|
testImplementation("junit:junit:4.12")
|
|
}
|
|
|
|
application {
|
|
mainClassName = "kr.pe.elex.test.App"
|
|
}
|