Ankit Anurag 87542892af maven to gradle (#11691)
* maven to gradle

A small java maven project which is converted into gradle

* formatted code

* reformatted pom.xml

* Updated pom.xml
2022-01-16 13:07:09 +01:00

32 lines
494 B
Groovy

/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = 'http://repo.maven.apache.org/maven2'
}
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.12.0'
}
group = 'com.balendung'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}