mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-11 20:01:10 +01:00
38 lines
667 B
Groovy
38 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)
|
||
|
}
|
||
|
}
|
||
|
}
|