-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
79 lines (58 loc) · 1.73 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
plugins {
id 'idea'
id 'java-library'
id 'jacoco'
id 'maven-publish'
id 'signing'
id "com.github.ben-manes.versions" version "0.36.0"
}
ext{
springVersion = '5.0.0.RELEASE'
springBootVersion = '2.4.4'
mockitoVersion = '3.8.0'
assertjVersion = '3.19.0'
lombokVersion = '1.18.18'
mapstructVersion = '1.4.2.Final'
}
tasks.withType(JavaCompile){
options.encoding = "UTF-8"
}
allprojects {
apply plugin: "java-library"
apply plugin: "jacoco"
repositories {
jcenter()
mavenLocal()
maven {
url 'https://maven.aliyun.com/repository/public/'
}
maven {
url 'https://maven.aliyun.com/repository/spring/'
}
mavenCentral()
}
}
subprojects {
apply plugin: "java-library"
apply plugin: "jacoco"
group 'io.github.zhaord'
version '1.0.1.SNAPSHOT'
[compileJava,compileTestJava,javadoc]*.options*.encoding = 'UTF-8'
dependencies {
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}"
testImplementation group: 'org.mockito', name: 'mockito-core', version: "${mockitoVersion}"
testImplementation group: 'org.assertj', name: 'assertj-core', version: "${assertjVersion}"
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
}
test{
useJUnitPlatform()
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}
}