Skip to content

Instantly share code, notes, and snippets.

@MrGung
Created September 28, 2024 08:50
Show Gist options
  • Save MrGung/adf488a4bcec258411404b640d3c3451 to your computer and use it in GitHub Desktop.
Save MrGung/adf488a4bcec258411404b640d3c3451 to your computer and use it in GitHub Desktop.
gradle-buildfile to create fat-jar
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