fcl/build.gradle
2021-06-25 14:08:06 +02:00

37 lines
667 B
Groovy

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