mirror of
https://github.com/tribufu/tribufu-java
synced 2026-05-06 06:47:27 +00:00
20 lines
341 B
Groovy
20 lines
341 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
version = "0.0.4"
|
|
archivesBaseName = "TribufuExample"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib')
|
|
implementation 'com.google.guava:guava:30.0-jre'
|
|
testImplementation 'junit:junit:4.13.1'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'com.tribufu.example.ExampleApp'
|
|
}
|