58 lines
2.5 KiB
Groovy
58 lines
2.5 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.4.2'
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
}
|
|
|
|
group = 'ru.ulstu'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri("http://repo.athene.tech/repository/maven-central/")
|
|
allowInsecureProtocol(true)
|
|
}
|
|
}
|
|
|
|
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'
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation'
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security'
|
|
implementation group: 'org.json', name: 'json', version: '20220320'
|
|
|
|
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect'
|
|
implementation group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity6'
|
|
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'
|
|
|
|
implementation group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.8.4'
|
|
|
|
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'
|
|
}
|