[JAVA-12744] Fix module to work with Gradle 7.x

This commit is contained in:
Haroon Khan 2022-06-18 23:21:20 +01:00
parent f73b8485bd
commit 770460b488
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"
}
}