blob: a8976c2f6c04d8e6bafa493c06480d7397dd7164 [file] [log] [blame]
apply plugin: 'java'
configurations {
custom
}
sourceSets {
custom {
java {
srcDirs = ['src/custom/java']
}
}
}
task customJar(type: Jar) {
from sourceSets.custom.output
classifier "custom"
}
// declare the new artifact
artifacts {
custom customJar
}