[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 e0c8d32835
commit 84815446a8
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 { buildscript {
repositories { repositories {
jcenter() mavenCentral()
gradlePluginPortal()
} }
dependencies { dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.3' classpath "gradle.plugin.com.github.johnrengelman:shadow:7.1.2"
} }
} }