Skip to content

Commit

Permalink
Add gradle plugin to create uber jar
Browse files Browse the repository at this point in the history
  • Loading branch information
MountainHills committed Sep 22, 2024
1 parent 929c0c5 commit c0066d7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
plugins {
id 'java'
id 'com.gradleup.shadow' version '8.3.2'
}

group = 'com.antonbondoc'
version = '1.0.0'

jar {
manifest {
attributes(
'Main-Class': 'com.antonbondoc.Antika'
)
}
}

repositories {
mavenCentral()
}
Expand Down

0 comments on commit c0066d7

Please sign in to comment.