-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
43 lines (37 loc) · 1.17 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
plugins {
id 'java-library'
}
def springVersion = '5.3.20'
def springDataJdbcVersion = '2.4.1'
def junitVersion = '5.8.2'
def junitEngineVersion = '1.8.2'
def lombokVersion = '1.18.24'
def postgresqlVersion = '42.3.6'
subprojects {
apply plugin: "java-library"
group 'org.test.multiple.databases'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compileOnly ("org.projectlombok:lombok:$lombokVersion")
implementation (
"org.springframework:spring-context:$springVersion",
"org.springframework.data:spring-data-jdbc:$springDataJdbcVersion",
"org.junit.jupiter:junit-jupiter-api:$junitVersion",
"org.junit.platform:junit-platform-engine:$junitEngineVersion",
"org.postgresql:postgresql:$postgresqlVersion"
)
testImplementation (
"org.springframework:spring-test:$springVersion",
"org.junit.jupiter:junit-jupiter-engine:$junitVersion"
)
annotationProcessor(
"org.projectlombok:lombok:$lombokVersion"
)
}
test {
useJUnitPlatform()
}
}