SEC-1976: include *.aj files in sourceJar

This commit is contained in:
Rob Winch 2012-07-09 18:13:07 -05:00
parent 262ee099df
commit b28e3a0b2f
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ apply plugin: 'maven'
// Create a source jar for uploading
task sourceJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.java
from sourceSets.main.java.srcDirs
include '**/*.java', '**/*.aj'
}
artifacts {