/* * 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) } } }