timis1 9836be6470 JAVA-16399 Upgrade gradle-modules/gradle/maven-to-gradle to JDK 17 (#14282)
* JAVA-16399 Upgrade gradle-modules/gradle/maven-to-gradle to JDK 17

* JAVA-16399 Remove duplicate modules in a profile

* JAVA-16399 Fix broken pom.xml

---------

Co-authored-by: timis1 <noreplay@yahoo.com>
2023-06-23 13:09:53 +05:30

35 lines
622 B
Groovy

/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
id 'java-library'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
api 'org.apache.commons:commons-lang3:3.12.0'
}
group = 'com.baeldung'
version = '0.0.1-SNAPSHOT'
description = 'maven-to-gradle'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}