fuzzy-controller/build.gradle

58 lines
2.5 KiB
Groovy
Raw Normal View History

2025-02-14 15:09:44 +04:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.2'
id 'io.spring.dependency-management' version '1.1.7'
2023-09-06 12:31:54 +04:00
}
2025-02-14 15:09:44 +04:00
group = 'ru.ulstu'
version = '0.0.1-SNAPSHOT'
2023-09-06 12:31:54 +04:00
2025-02-14 15:09:44 +04:00
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
2023-09-06 12:31:54 +04:00
}
repositories {
maven {
2025-02-14 15:09:44 +04:00
url = uri("http://repo.athene.tech/repository/maven-central/")
allowInsecureProtocol(true)
2023-09-06 12:31:54 +04:00
}
}
dependencies {
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jetty'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
2025-02-14 19:45:45 +04:00
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation'
2023-09-06 12:31:54 +04:00
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
2025-02-14 19:45:45 +04:00
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security'
2023-09-06 12:31:54 +04:00
implementation group: 'org.json', name: 'json', version: '20220320'
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect'
2025-02-14 19:45:45 +04:00
implementation group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity6'
2023-09-06 12:31:54 +04:00
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-afterburner'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-hibernate5'
implementation group: 'com.h2database', name:'h2'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
2025-02-14 15:09:44 +04:00
implementation group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.8.4'
2023-09-06 12:31:54 +04:00
implementation group: 'com.ibm.icu', name: 'icu4j', version: '63.1'
implementation group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '5.9.0.202009080501-r'
implementation group: 'com.fuzzylite', name: 'jfuzzylite', version: '6.0.1'
implementation group: 'org.webjars', name: 'jquery', version: '3.6.0'
implementation group: 'org.webjars', name: 'bootstrap', version: '4.6.0'
implementation group: 'org.webjars', name: 'bootstrap-select', version: '1.13.8'
implementation group: 'org.webjars', name: 'font-awesome', version: '4.7.0'
implementation group: 'org.webjars', name: 'highcharts', version: '7.0.0'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'
}
wrapper {
gradleVersion = '6.8.2'
}