We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d9f36c commit d44f340Copy full SHA for d44f340
1 file changed
build.gradle
@@ -55,7 +55,8 @@ sourceSets {
55
srcDir 'src/generated/resources'
56
}
57
58
- compileClasspath += compileClasspath += sourceSets.api.output
+ runtimeClasspath += sourceSets.api.output
59
+ compileClasspath += sourceSets.api.output
60
61
62
test {
@@ -288,6 +289,9 @@ tasks.withType(Jar).configureEach {
288
289
290
shadowJar {
291
classifier ""
292
+ from sourceSets.api.output
293
+ from sourceSets.main.output
294
+
295
configurations = [project.configurations.shade]
296
exclude "LICENSE*"
297
finalizedBy 'reobfShadowJar'
0 commit comments