mirror of
https://github.com/tribufu/tribufu-java
synced 2026-05-06 06:47:27 +00:00
24 lines
623 B
Groovy
24 lines
623 B
Groovy
plugins {
|
|
id "application"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = "https://mvn.tribufu.com/releases" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.google.guava:guava:30.0-jre"
|
|
implementation project(":")
|
|
testImplementation "junit:junit:4.13.1"
|
|
}
|
|
|
|
jar {
|
|
dependsOn ":jar"
|
|
from project(":").sourceSets.main.output
|
|
from configurations.compileClasspath.filter { it.name.contains("com.tribufu") }.collect { zipTree(it) }
|
|
|
|
manifest {
|
|
attributes("Implementation-Title": rootProject.name, "Implementation-Version": project.version, "Main-Class": "com.tribufu.example.Main")
|
|
}
|
|
}
|