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:32 +02:00
+2 -1
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) {