generated from gsdukbh/springboot-template-multi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
90 lines (81 loc) · 3.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
buildscript {
ext{
springBootVersion='3.2.3'
springBootManagementVersion='1.1.4'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("io.spring.gradle:dependency-management-plugin:${springBootManagementVersion}")
}
}
subprojects {
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'java'
group = 'top.werls.novel'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '21'
repositories {
mavenCentral()
}
ext{
// version 配置
gsonVersion= '2.9.0'
lang3Version = '3.12.0'
springdocVersion = '2.3.0'
jwtVersion = '0.11.2'
bouncycastleVersion = '1.6.13'
springBootVersion='3.2.3'
springBootManagementVersion='1.1.4'
jsoup='1.17.2'
mysql='8.0.33'
sqlite='3.36.0.3'
hibernate='6.1.5.Final'
cache2k="2.6.1.Final"
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
mavenBom("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
dependencies {
//cache2k 缓存
// https://cache2k.org/
implementation "org.cache2k:cache2k-spring:${cache2k}"
implementation "org.cache2k:cache2k-api:${cache2k}"
runtimeOnly "org.cache2k:cache2k-core:${cache2k}"
implementation "io.reactivex.rxjava3:rxjava:3.1.6"
implementation "org.jsoup:jsoup:${jsoup}"
implementation "com.google.code.gson:gson:${gsonVersion}"
implementation "org.apache.commons:commons-lang3:${lang3Version}"
// sqlite 依赖
implementation "org.hibernate.orm:hibernate-community-dialects:${hibernate}"
runtimeOnly "org.xerial:sqlite-jdbc:${sqlite}"
// mysql
runtimeOnly "mysql:mysql-connector-java:${mysql}"
implementation "mysql:mysql-connector-java:${mysql}"
// spring doc
// spring doc https://springdoc.org/v2
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:${springdocVersion}"
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.boot:spring-boot-starter-cache'
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 'org.springframework.security:spring-security-test'
}
tasks.named('test') {
useJUnitPlatform()
}
}