-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (30 loc) · 1.04 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
plugins {
id 'java'
id 'war'
id 'org.springframework.boot' version '3.2.4'
id 'io.spring.dependency-management' version '1.1.4'
// id 'io.springfox.springfox-swagger2' version '3.0.0'
// id 'io.springframework.boot.spring-boot-starter-parent' version '3.1.5'
}
group = 'webCalendarSpring'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'com.h2database:h2:2.1.212'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// implementation "io.springfox:springfox-boot-starter:3.0.0"
// implementation "io.springfox:springfox-swagger-ui:3.0.0"
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.4.0'
implementation 'org.springframework.boot:spring-boot-starter-hateoas'
}
tasks.named('test') {
useJUnitPlatform()
}