-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
60 lines (49 loc) · 1.01 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
plugins {
id 'org.springframework.boot' version '2.6.15'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'pro.hexa'
version = '0.0.1'
repositories {
mavenCentral()
}
allprojects {
apply plugin: 'java'
sourceCompatibility = '11'
}
subprojects {
sourceCompatibility = '11'
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
buildscript {
ext {
queryDslVersion = "5.0.0"
}
}
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
test {
useJUnitPlatform()
}
tasks {
register("prepareKotlinBuildScriptModel"){}
}
}
project('hexa-homepage-backend-main-app') {
dependencies {
implementation project(':hexa-homepage-backend-core')
implementation project(':hexa-homepage-backend-domain')
implementation project(':hexa-homepage-backend-email')
}
}