1
0
mirror of synced 2026-05-22 21:33:16 +00:00

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
+2 -1
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 {