Skip to content
Snippets Groups Projects
Commit aa8a7703 authored by hansen's avatar hansen
Browse files

update gradle file

parent b556eb8f
No related branches found
No related tags found
No related merge requests found
......@@ -93,6 +93,16 @@ tasks.withType(FindBugs) {
ignoreFailures = true
}
task createJar(type: Jar, dependsOn: build){
archiveName = 'TLC4B.jar'
from sourceSets.main.output
from {configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
exclude('**/*.java')
manifest {
attributes "Main-Class" : 'de.tlc4b.TLC4B'
}
}
if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment