File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,19 @@ sourceSets {
19
19
}
20
20
resources {
21
21
srcDirs = [" ../../libs/processing-core/src/main/" ]
22
+ exclude " AndroidManifest.xml"
23
+ exclude ' **/java/**'
22
24
}
23
25
}
24
26
}
25
27
26
28
task sourceJar (type : Jar , dependsOn : classes) {
27
29
duplicatesStrategy = DuplicatesStrategy . INCLUDE
28
30
classifier = " sources"
29
- from sourceSets. main. allSource
31
+ from sourceSets. main. allSource
30
32
}
31
33
34
+
32
35
// Does not work because of Processing-specific tags in source code, such as @webref
33
36
task javadocJar (type : Jar , dependsOn : javadoc) {
34
37
classifier = " javadoc"
Original file line number Diff line number Diff line change @@ -11,22 +11,24 @@ dependencies {
11
11
implementationAar " com.google.ar:core:${ garVersion} "
12
12
}
13
13
14
- task sourceJar (type : Jar ) {
15
- from sourceSets. main. allJava
16
- archiveClassifier = " sources"
17
- }
18
-
19
14
sourceSets {
20
15
main {
21
16
java {
22
17
srcDirs = [" ../../../../libs/processing-ar/src/main/java/" ]
23
18
}
24
19
resources {
25
20
srcDirs = [" ../../../../libs/processing-ar/src/main/" ]
21
+ exclude " AndroidManifest.xml"
22
+ exclude ' **/java/**'
26
23
}
27
24
}
28
25
}
29
26
27
+ task sourceJar (type : Jar ) {
28
+ from sourceSets. main. allJava
29
+ archiveClassifier = " sources"
30
+ }
31
+
30
32
// Does not work because of Processing-specific tags in source code, such as @webref
31
33
task javadocJar (type : Jar , dependsOn : javadoc) {
32
34
classifier = " javadoc"
You can’t perform that action at this time.
0 commit comments