59 lines
2.1 KiB
Groovy
59 lines
2.1 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'org.springframework.boot' version '2.6.4'
|
|
}
|
|
|
|
jar {
|
|
archivesBaseName = 'time-series-smoothing'
|
|
}
|
|
|
|
group 'ru.ulstu'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
maven {
|
|
url "https://repo.athene.tech/repository/maven-central/"
|
|
}
|
|
maven {
|
|
url "https://repo.athene.tech/repository/maven-releases/"
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
ext {
|
|
versionSLF4J = '1.7.24'
|
|
versionJetty = '9.3.16.v20170120'
|
|
}
|
|
|
|
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-test'
|
|
implementation group: 'org.slf4j', name: 'slf4j-api', version: versionSLF4J
|
|
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '3.0.0'
|
|
implementation group: 'org.javassist', name: 'javassist', version: '3.25.0-GA'
|
|
implementation group: 'org.eclipse.jetty', name: 'jetty-servlet', version: versionJetty
|
|
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations'
|
|
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310'
|
|
|
|
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.5'
|
|
|
|
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'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
}
|
|
|
|
|