-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (39 loc) · 1.27 KB
/
build.gradle
File metadata and controls
49 lines (39 loc) · 1.27 KB
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
plugins {
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'lohika.javaclub'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
ext {
set('testcontainersVersion', "1.14.3")
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
implementation 'org.postgresql:postgresql:42.2.18'
implementation 'org.mariadb.jdbc:mariadb-java-client:2.7.0'
implementation 'org.testcontainers:testcontainers:1.15.0-rc2'
implementation 'org.testcontainers:jdbc:1.15.0-rc2'
implementation 'org.testcontainers:postgresql:1.15.0-rc2'
implementation 'org.testcontainers:mariadb:1.15.0-rc2'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.hibernate:hibernate-core'
implementation 'org.flywaydb:flyway-core'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
dependencyManagement {
imports {
mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}"
}
}
test {
useJUnitPlatform()
}