-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
72 lines (65 loc) · 2.58 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
buildscript {
ext{
springBootVersion='3.1.3'
springBootManagementVersion='1.1.3'
}
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.springboottemplate'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
ext{
// version 配置
gsonVersion= '2.9.0'
lang3Version = '3.12.0'
springdocVersion = '1.6.5'
jwtVersion = '0.11.2'
springBootVersion='3.0.0'
springBootManagementVersion='1.1.0'
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
mavenBom("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
dependencies {
implementation "com.google.code.gson:gson:2.9.0"
implementation 'org.apache.commons:commons-lang3:3.12.0'
// spring doc https://springdoc.org
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
// // jwt
// implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
// runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
// // Uncomment the next line if you want to use RSASSA-PSS (PS256, PS384, PS512) algorithms:
// 'org.bouncycastle:bcprov-jdk15on:1.70'
// 'io.jsonwebtoken:jjwt-gson:0.11.5'
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'
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()
}
}