##// END OF EJS Templates
Initial commit, ported some traits from container-plugin
Initial commit, ported some traits from container-plugin

File last commit:

r0:bce845757544 default
r0:bce845757544 default
Show More
build.gradle
27 lines | 440 B | text/x-groovy | GroovyLexer
cin
Initial commit, ported some traits from container-plugin
r0 plugins {
id "java-library"
id "ivy-publish"
}
java {
withJavadocJar()
withSourcesJar()
}
dependencies {
api gradleApi()
}
task printVersion{
doLast {
println "project: $project.groupId:$project.name:$project.version"
println "jar: ${->jar.archiveFileName.get()}"
}
}
publishing {
repositories {
ivy {
url "${System.properties["user.home"]}/ivy-repo"
}
}
}