We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b801f3 + 213fcd5 commit 73df4fcCopy full SHA for 73df4fc
build.gradle
@@ -1,9 +1,18 @@
1
+buildscript {
2
+
3
+ dependencies {
4
+ classpath 'com.gradleup.shadow:shadow-gradle-plugin:8.3.9'
5
+ }
6
+}
7
8
plugins {
9
id 'java'
- id 'java-library'
10
id 'signing'
11
id 'maven-publish'
- id 'com.gradleup.shadow' version '8.3.9'
12
+ id 'java-library'
13
14
+if (project == rootProject) {
15
+ apply plugin: 'com.gradleup.shadow'
16
}
17
18
tasks.withType(JavaCompile).configureEach {
@@ -296,7 +305,7 @@ jar {
296
305
)
297
306
298
307
299
-
308
300
309
shadowJar {
301
310
zip64 true
302
311
//mainClassName = 'com.neuronrobotics.bowlerstudio.BowlerKernel'
@@ -310,6 +319,7 @@ shadowJar {
319
320
mergeServiceFiles()
312
321
322
313
323
314
324
group = "com.neuronrobotics"
315
325
0 commit comments