-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (36 loc) · 1.24 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
subprojects {
apply plugin: 'java'
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
group = 'org.dreamcat.maid'
version = '0.1.0'
sourceCompatibility = '14'
ext {
slf4jVersion = "1.7.30"
lombokVersion = "1.18.12"
}
dependencies {
//implementation "org.slf4j:slf4j-api:$slf4jVersion"
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
testCompileOnly "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
implementation 'org.dreamcat:common-core:0.0.1'
implementation 'org.dreamcat:common-web:0.0.1'
implementation('org.dreamcat:common-webflux:0.0.1') {
// disable JPA
exclude group: 'jakarta.persistence', module: 'jakarta.persistence-api'
}
implementation 'org.dreamcat:common-webflux-security:0.0.1'
implementation 'org.dreamcat.pepper:rita-auth:0.1.0'
implementation "org.apache.tika:tika-core:1.24"
}
task printVersion {
doLast {
print version
}
}
test {
useJUnitPlatform()
}
}