blob: 622dfbd13a19c4e7cb36da2587936f993a81ca2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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'
}
|