-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
62 lines (52 loc) · 1.82 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.0-SNAPSHOT'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'my.lazyskulptor'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
maven { url 'https://jitpack.io' }
}
ext {
set('testcontainersVersion', "1.17.6")
}
dependencies {
implementation 'org.springframework:spring-tx'
implementation 'org.springframework:spring-jdbc'
implementation 'io.smallrye.reactive:mutiny-reactor:2.1.0'
implementation 'org.springframework.data:spring-data-commons'
implementation "org.hibernate.reactive:hibernate-reactive-core:1.1.9.Final"
implementation "io.vertx:vertx-mysql-client:4.4.1"
implementation "com.github.lazyskulptor:hibernate-reactive-spring-api:alpha"
runtimeOnly "mysql:mysql-connector-java:8.0.32"
implementation 'org.apache.commons:commons-dbcp2:2.9.0'
implementation "org.liquibase:liquibase-core"
implementation "javax.validation:validation-api:2.0.1.Final"
implementation 'org.springframework.boot:spring-boot-starter-webflux'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation "org.testcontainers:mysql"
}
dependencyManagement {
imports {
mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}"
}
}
tasks.named('test') {
useJUnitPlatform()
}