route-cartographer/build.gradle

28 lines
506 B
Groovy
Raw Normal View History

2024-01-19 14:29:20 +01:00
plugins {
2024-01-20 19:55:50 +01:00
id 'java'
id 'com.palantir.git-version' version '0.13.0'
2024-01-19 14:29:20 +01:00
}
group = 'foo.zaaarf'
2024-01-20 19:55:50 +01:00
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/'
}
}
2024-01-19 14:29:20 +01:00
repositories {
2024-01-20 19:55:50 +01:00
mavenCentral()
2024-01-19 14:29:20 +01:00
}
dependencies {
2024-01-20 19:55:50 +01:00
implementation 'org.springframework:spring-web:5.3.31'
2024-01-19 14:29:20 +01:00
}