Skip to content

Commit 9295e60

Browse files
committed
Updated gradle
1 parent 31ac196 commit 9295e60

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id 'java'
3-
id 'application'
3+
id 'maven'
4+
id "com.github.johnrengelman.shadow" version "4.0.2"
45
}
56

67
group 'com.uddernetworks.newocrwebsite.updater'
@@ -18,6 +19,8 @@ dependencies {
1819
compile fileTree(dir: 'libs', include: '*.jar')
1920
}
2021

21-
application {
22-
mainClassName = 'com.uddernetworks.newocrwebsite.analyzer.Analyze'
23-
}
22+
jar {
23+
manifest {
24+
attributes("Main-Class": "com.uddernetworks.newocrwebsite.analyzer.Analyze")
25+
}
26+
}

0 commit comments

Comments
 (0)