-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
65 lines (55 loc) · 1.32 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
plugins {
id 'org.springframework.boot' version '2.5.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'maven-publish'
id 'signing'
}
group = 'com.tairitsu'
version = '1.0.32'
subprojects {
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}
allprojects {
group = 'com.tairitsu'
version = '1.0.32'
}
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation 'org.projectlombok:lombok:1.18.22'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}
afterEvaluate {
task sayHello {
def modules = [
'cache',
'database-exposed',
'database-jpa',
'exception',
'foundation',
'serializer',
'support',
'translation',
'validation',
'spring-boot-demo',
'spring-boot-jpa-demo',
]
it.doLast {
println "Hello ${project.name}"
modules.each { s ->
def p = project(s)
println "Hello ${p.name}"
}
}
}
}