/* * This file was generated by the Gradle 'init' task. */ plugins { id 'java' id 'maven-publish' } repositories { mavenLocal() maven { url = uri('https://nexus-private.hortonworks.com/nexus/content/groups/public') } maven { url = uri('https://repo.maven.apache.org/maven2/') } } dependencies { implementation 'junit:junit:4.13.2' implementation 'com.google.code.gson:gson:2.8.7' } group = 'com.fectron' version = '1' description = 'fcl' java.sourceCompatibility = JavaVersion.VERSION_1_8 publishing { publications { maven(MavenPublication) { from(components.java) } } }