Browse Source

SEC-1976: include *.aj files in sourceJar

pull/7/merge
Rob Winch 14 years ago
parent
commit
b28e3a0b2f
  1. 3
      gradle/maven-deployment.gradle

3
gradle/maven-deployment.gradle

@ -3,7 +3,8 @@ apply plugin: 'maven' @@ -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 {

Loading…
Cancel
Save