Merge pull request #12379 from hkhan/JAVA-12744-check-fat-jar-module

[JAVA-12744] Fix module to work with Gradle 7.x
This commit is contained in:
kwoyke 2022-06-20 15:10:21 +02:00 committed by GitHub
commit 9b48e3eceb
2 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,3 @@
### Relevant Articles:
- [Creating a Fat Jar in Gradle](https://www.baeldung.com/gradle-fat-jar)

View File

@ -1,9 +1,10 @@
buildscript {
repositories {
jcenter()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.3'
classpath "gradle.plugin.com.github.johnrengelman:shadow:7.1.2"
}
}