Artifacts
Simple Jar
jar {
manifest {
attributes 'Main-Class': 'com.test.Main'
}
}Assemble task
task sourcesJar(type: Jar) {
baseName baseName
classifier 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar // creates 'build/libs/myproject-sources.jar'
}Create distribution
Publish artifacts
Last updated