IP_PIbd-21_Sergeev_N.I./build.gradle

39 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2023-02-13 15:24:22 +04:00
plugins {
2023-05-14 13:53:12 +04:00
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
2023-02-13 15:24:22 +04:00
}
group = 'ip'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
2023-05-14 13:53:12 +04:00
mavenCentral()
2023-02-13 15:24:22 +04:00
}
jar {
2023-05-14 13:53:12 +04:00
enabled = false
}
2023-02-13 15:24:22 +04:00
dependencies {
2023-05-14 13:53:12 +04:00
implementation(project(':front'))
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'com.h2database:h2:2.1.210'
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.5'
implementation 'org.hibernate.validator:hibernate-validator'
implementation group: 'org.springframework', name: 'spring-tx'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.5'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.auth0:java-jwt:4.4.0'
2023-02-13 15:24:22 +04:00
}
tasks.named('test') {
2023-05-14 13:53:12 +04:00
useJUnitPlatform()
2023-02-13 15:24:22 +04:00
}