File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,24 @@ repositories {
2020
2121jar {
2222 duplicatesStrategy = DuplicatesStrategy . INCLUDE
23+
24+ // Debug what's happening
25+ doFirst {
26+ println " === JAR Task Debug ==="
27+ println " Classes dirs exist: ${ sourceSets.main.output.classesDirs.every { it.exists() }} "
28+ println " Resources dir exists: ${ sourceSets.main.output.resourcesDir?.exists()} "
29+
30+ sourceSets. main. output. classesDirs. each { dir ->
31+ if (dir. exists()) {
32+ println " Found classes in: ${ dir} "
33+ dir. eachFileRecurse { file ->
34+ if (file. name. endsWith(' .class' )) {
35+ println " Class: ${ file.name} "
36+ }
37+ }
38+ }
39+ }
40+ }
2341}
2442
2543sourcesJar {
Original file line number Diff line number Diff line change 1+ rootProject. name = ' css-inline'
You can’t perform that action at this time.
0 commit comments