Created
September 28, 2024 08:50
-
-
Save MrGung/adf488a4bcec258411404b640d3c3451 to your computer and use it in GitHub Desktop.
gradle-buildfile to create fat-jar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'java' | |
repositories { | |
mavenCentral() | |
maven { url "https://clojars.org/repo" } | |
} | |
dependencies { | |
implementation("io.github.borkdude:quickdoc:v0.2.3") | |
} | |
buildscript { | |
repositories { | |
mavenCentral() | |
gradlePluginPortal() | |
} | |
dependencies { | |
classpath "gradle.plugin.com.github.johnrengelman:shadow:8.0.0" | |
} | |
} | |
apply plugin: 'java' | |
apply plugin: 'com.github.johnrengelman.shadow' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment