forked from youngmonkeys/sso-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (38 loc) · 1.08 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
plugins {
id 'java'
id 'idea'
id 'jacoco'
}
allprojects {
group 'com.tvd12.examples'
version '1.0.0'
repositories {
mavenLocal()
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'jacoco'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'com.tvd12:ezyfox-util:' + ezyfoxVersion
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.2'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation 'com.tvd12:ezyfox-tools:' + ezyfoxVersion
testImplementation 'com.tvd12:test-util:' + testUtilVersion
testImplementation 'org.mockito:mockito-junit-jupiter:3.11.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
}
test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
}