PIbd-22_Artamonova_T.V._IP/build.gradle

65 lines
2.4 KiB
Groovy
Raw Normal View History

2023-02-14 09:46:27 +04:00
plugins {
id 'java'
2023-09-22 16:24:02 +04:00
id 'org.springframework.boot' version '2.6.3'
2023-02-14 09:46:27 +04:00
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'ru.ulstu.is'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
2023-06-11 00:25:47 +04:00
2023-09-22 16:24:02 +04:00
implementation 'org.springframework.boot:spring-boot-starter-web'
2023-06-11 00:25:47 +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'
2023-09-22 16:24:02 +04:00
2023-06-11 00:25:47 +04:00
implementation 'org.webjars:bootstrap:5.1.3'
implementation 'org.webjars:jquery:3.6.0'
implementation 'org.webjars:font-awesome:6.1.0'
2023-09-22 16:24:02 +04:00
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'com.h2database:h2:2.1.210'
2023-06-12 19:03:11 +04:00
implementation 'org.springframework.boot:spring-boot-starter-security'
2023-09-22 16:24:02 +04:00
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
implementation 'org.hibernate.validator:hibernate-validator'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.5'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// 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.springframework.boot:spring-boot-starter-thymeleaf'
// implementation 'org.springframework.boot:spring-boot-devtools'
// implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
// implementation 'org.webjars:bootstrap:5.1.3'
// implementation 'org.webjars:jquery:3.6.0'
// implementation 'org.webjars:font-awesome:6.1.0'
//
// implementation 'org.jetbrains:annotations:24.0.0'
// implementation 'org.jetbrains:annotations:24.0.0'
// implementation 'org.springframework.boot:spring-boot-starter-validation'
// implementation 'org.hibernate.validator:hibernate-validator'
// testImplementation 'org.springframework.boot:spring-boot-starter-test'
//
// implementation 'org.springframework.boot:spring-boot-starter-security'
// implementation 'com.auth0:java-jwt:4.4.0'
// implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
// annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
2023-02-14 09:46:27 +04:00
}
tasks.named('test') {
useJUnitPlatform()
}