##// END OF EJS Templates
Reworked shell execution traits, removed useless wrappers, added JsonDelegate for using with closures to construct json-like objects.
Reworked shell execution traits, removed useless wrappers, added JsonDelegate for using with closures to construct json-like objects.

File last commit:

r16:0e291927620c default
r18:97a649d829ac default
Show More
build.gradle
40 lines | 759 B | text/x-groovy | GroovyLexer
plugins {
id "java-library"
id "ivy-publish"
}
java {
withJavadocJar()
withSourcesJar()
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
dependencies {
compileOnly libs.jdt.annotations
api gradleApi()
}
task printVersion{
doLast {
println "project: $project.group:$project.name:$project.version"
println "jar: ${->jar.archiveFileName.get()}"
}
}
publishing {
repositories {
ivy {
url "${System.properties["user.home"]}/ivy-repo"
}
}
publications {
ivy(IvyPublication) {
from components.java
descriptor.description {
text = providers.provider({ description })
}
}
}
}