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

This commit is contained in:
Haroon Khan 2022-06-18 11:28:54 +01:00
parent 6beec696aa
commit 3dfe2e7082
1 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,7 @@ plugins {
repositories { repositories {
mavenLocal() mavenLocal()
maven { maven {
url = 'http://repo.maven.apache.org/maven2' url = uri('https://repo.maven.apache.org/maven2/')
} }
} }
@ -18,9 +18,10 @@ dependencies {
implementation 'org.apache.commons:commons-lang3:3.12.0' implementation 'org.apache.commons:commons-lang3:3.12.0'
} }
group = 'com.balendung' group = 'com.baeldung'
version = '0.0.1-SNAPSHOT' version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8' description = 'maven-to-gradle'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing { publishing {
publications { publications {