30 lines
961 B
Groovy
Raw Permalink Normal View History

2023-02-06 13:56:19 +04:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.6'
id 'io.spring.dependency-management' version '1.1.0'
2023-02-06 13:56:19 +04:00
}
group = 'com.example'
2023-02-06 13:56:19 +04:00
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
2023-05-15 01:25:15 +04:00
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
2023-02-06 13:56:19 +04:00
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'com.h2database:h2:2.1.210'
implementation 'org.hibernate.validator:hibernate-validator'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.4'
implementation 'org.springframework.boot:spring-boot-starter-security'
2023-05-15 01:25:15 +04:00
implementation 'com.auth0:java-jwt:4.4.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'}
2023-02-06 13:56:19 +04:00
tasks.named('test') {
useJUnitPlatform()
}