-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
64 lines (50 loc) · 1.63 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
plugins {
id 'java'
id 'idea'
id 'com.github.johnrengelman.shadow' version '7.1.1'
}
allprojects {
group 'com.mk.examples'
version '1.0.0'
repositories {
mavenCentral()
}
}
jar {
manifest {
attributes 'Main-Class': 'com.minhkhoa.VivaconApplication'
}
}
dependencies {
implementation 'com.tvd12:ezyfox-bean:' + ezyfoxVersion
implementation 'com.fasterxml.jackson.core:jackson-databind:' + jacksonVersion
implementation 'org.slf4j:slf4j-api:1.7.32'
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()
}
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 11
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()
}
}