-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (42 loc) · 1.24 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.5'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'cn.dioxide'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '21'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
/* Reactive Redis */
implementation 'org.springframework.boot:spring-boot-starter-data-redis-reactive'
/* WebFlux */
implementation 'org.springframework.boot:spring-boot-starter-webflux'
/* Mybatis Flex */
implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.3'
/* Sharding Sphere JDBC */
implementation 'org.apache.shardingsphere:shardingsphere-jdbc-core:5.3.0'
/* Lombok */
compileOnly 'org.projectlombok:lombok'
/* MySQL Connector */
runtimeOnly 'com.mysql:mysql-connector-j'
/* Lombok */
annotationProcessor 'org.projectlombok:lombok'
/* Mybatis Flex */
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.7.3'
/* Test Unit */
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
}
tasks.named('test') {
useJUnitPlatform()
}