PIbd-21_IP_Zacharchenko/build.gradle

47 lines
1.3 KiB
Groovy
Raw Normal View History

2023-03-21 14:52:01 +04:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.4'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '19'
repositories {
mavenCentral()
}
2023-04-30 00:20:46 +04:00
jar {
enabled = false
}
2023-03-21 14:52:01 +04:00
dependencies {
2023-05-15 13:56:26 +04:00
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
2023-03-21 14:52:01 +04:00
implementation 'org.springframework.boot:spring-boot-starter-web'
2023-05-01 03:54:58 +04:00
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
implementation 'org.webjars.npm:bootstrap:5.3.0-alpha2'
implementation 'org.webjars:jquery:3.6.0'
implementation 'org.webjars:font-awesome:6.1.0'
2023-04-30 00:20:46 +04:00
2023-03-21 14:52:01 +04:00
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
2023-05-15 13:56:26 +04:00
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.auth0:java-jwt:4.4.0'
2023-04-30 00:20:46 +04:00
implementation 'com.h2database:h2:2.1.210'
implementation 'org.hibernate.validator:hibernate-validator'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.5'
2023-05-01 03:54:58 +04:00
implementation 'org.projectlombok:lombok:1.18.22'
2023-03-21 14:52:01 +04:00
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}