tribufu-java/example/build.gradle
2025-06-04 07:36:50 -03:00

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")
}
}