We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31ac196 commit 9295e60Copy full SHA for 9295e60
build.gradle
@@ -1,6 +1,7 @@
1
plugins {
2
id 'java'
3
- id 'application'
+ id 'maven'
4
+ id "com.github.johnrengelman.shadow" version "4.0.2"
5
}
6
7
group 'com.uddernetworks.newocrwebsite.updater'
@@ -18,6 +19,8 @@ dependencies {
18
19
compile fileTree(dir: 'libs', include: '*.jar')
20
21
-application {
22
- mainClassName = 'com.uddernetworks.newocrwebsite.analyzer.Analyze'
23
-}
+jar {
+ manifest {
24
+ attributes("Main-Class": "com.uddernetworks.newocrwebsite.analyzer.Analyze")
25
+ }
26
+}
0 commit comments