Merge pull request #104 from poutsma/SPR-9536

* SPR-9576:
  Include **/*.aj files in *-sources.jar files
This commit is contained in:
Chris Beams 2012-07-10 13:22:20 +02:00
commit 2b4a516980
1 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,8 @@ configure(subprojects) { subproject ->
task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources'
from sourceSets.main.allJava
from sourceSets.main.allJava.srcDirs
include '**/*.java', '**/*.aj'
}
task javadocJar(type: Jar) {