2022-01-16 07:07:09 -05:00
|
|
|
/*
|
|
|
|
* This file was generated by the Gradle 'init' task.
|
2023-06-23 03:39:53 -04:00
|
|
|
*
|
|
|
|
* This project uses @Incubating APIs which are subject to change.
|
2022-01-16 07:07:09 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
2023-06-23 03:39:53 -04:00
|
|
|
id 'java-library'
|
2022-01-16 07:07:09 -05:00
|
|
|
id 'maven-publish'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
maven {
|
2022-06-18 06:28:54 -04:00
|
|
|
url = uri('https://repo.maven.apache.org/maven2/')
|
2022-01-16 07:07:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-06-23 03:39:53 -04:00
|
|
|
api 'org.apache.commons:commons-lang3:3.12.0'
|
2022-01-16 07:07:09 -05:00
|
|
|
}
|
|
|
|
|
2022-06-18 06:28:54 -04:00
|
|
|
group = 'com.baeldung'
|
2022-01-16 07:07:09 -05:00
|
|
|
version = '0.0.1-SNAPSHOT'
|
2022-06-18 06:28:54 -04:00
|
|
|
description = 'maven-to-gradle'
|
|
|
|
java.sourceCompatibility = JavaVersion.VERSION_1_8
|
2022-01-16 07:07:09 -05:00
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
maven(MavenPublication) {
|
|
|
|
from(components.java)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|