generated from pricelees/issue-pr-template
34 lines
1008 B
Groovy
34 lines
1008 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '3.2.4'
|
|
id 'io.spring.dependency-management' version '1.1.4'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'nextstep'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '17'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0'
|
|
|
|
implementation 'io.jsonwebtoken:jjwt:0.9.1'
|
|
implementation 'javax.xml.bind:jaxb-api:2.3.1'
|
|
|
|
runtimeOnly 'com.h2database:h2'
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'io.rest-assured:rest-assured:5.3.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |