提交 a681e574 编写于 作者: R Rob Winch 提交者: Chris Beams

Include **/*.aj files in *-sources.jar files

Previously only **/*.java sources files were included in the sources
jars. This is not ideal for the spring-aspects jar nor does it match
prior versions of the sources jars.

Now **/*.aj files are included in addition to the **/*.java files.

Issue: SPR-9576
上级 cf147a82
...@@ -71,7 +71,8 @@ configure(subprojects) { subproject -> ...@@ -71,7 +71,8 @@ configure(subprojects) { subproject ->
task sourcesJar(type: Jar, dependsOn:classes) { task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources' classifier = 'sources'
from sourceSets.main.allJava from sourceSets.main.allJava.srcDirs
include '**/*.java', '**/*.aj'
} }
task javadocJar(type: Jar) { task javadocJar(type: Jar) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册