mirror of
https://github.com/zaaarf/route-cartographer.git
synced 2024-11-14 16:49:19 +01:00
28 lines
No EOL
506 B
Groovy
28 lines
No EOL
506 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.palantir.git-version' version '0.13.0'
|
|
}
|
|
|
|
group = 'foo.zaaarf'
|
|
archivesBaseName = 'rc'
|
|
version = gitVersion().split('-').getAt(0).replace('.dirty', '')
|
|
|
|
java {
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
javadoc {
|
|
options {
|
|
links 'https://docs.spring.io/spring-framework/docs/5.3.31/javadoc-api/'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework:spring-web:5.3.31'
|
|
} |