-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
42 lines (34 loc) · 1.11 KB
/
build.gradle
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
plugins {
id 'idea'
id 'java-library'
id 'maven'
id 'net.researchgate.release' version '2.8.1'
}
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
wrapper {
gradleVersion = '6.3'
distributionType = Wrapper.DistributionType.ALL
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'com.squareup.retrofit2:retrofit:2.7.2'
implementation 'com.squareup.retrofit2:converter-gson:2.7.2'
implementation 'com.squareup.okhttp3:logging-interceptor:4.8.1'
implementation 'org.apache.commons:commons-lang3:3.9'
implementation 'commons-codec:commons-codec:1.14'
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
}
release {
preTagCommitMessage = '[Gradle Release Plugin] - prepare release: '
tagCommitMessage = '[Gradle Release Plugin] - prepare release: '
newVersionCommitMessage = '[Gradle Release Plugin] - prepare for next development iteration: '
}
test {
useJUnitPlatform()
}