mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-05-31 07:01:55 +00:00
39 lines
918 B
Groovy
39 lines
918 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'maven-publish'
|
|
}
|
|
|
|
group = 'org.gitnex'
|
|
version = '1.0.0'
|
|
description = 'tea4j-autodeploy'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
url = uri('https://repo.maven.apache.org/maven2/')
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
from(components.java)
|
|
}
|
|
}
|
|
}
|
|
|
|
java.sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = 'UTF-8'
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'io.swagger.core.v3:swagger-annotations:2.1.13'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
implementation 'com.squareup.retrofit2:converter-scalars:2.9.0'
|
|
implementation 'org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2'
|
|
implementation 'io.gsonfire:gson-fire:1.8.5'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
} |