-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
40 lines (31 loc) · 880 Bytes
/
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
plugins {
id 'java'
id 'idea'
}
allprojects {
group 'com.tvd12.examples'
version '1.0.0'
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation 'com.tvd12:ezyfox-bean:' + ezyfoxVersion
implementation 'com.fasterxml.jackson.core:jackson-databind:' + jacksonVersion
compileOnly 'org.projectlombok:lombok:' + lombokVersion
annotationProcessor 'org.projectlombok:lombok:' + lombokVersion
testImplementation 'com.tvd12:test-util:' + testUtilVersion
testImplementation 'org.junit.jupiter:junit-jupiter-api:' + jupiterVersion
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}
}