2020-09-12 13:04:21 +04:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2022-04-16 10:11:01 +04:00
|
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
|
|
id 'org.springframework.boot' version '2.6.4'
|
2018-02-22 22:47:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2020-09-12 13:04:21 +04:00
|
|
|
archivesBaseName='time-series-smoothing'
|
2018-02-22 22:47:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2022-04-16 10:11:01 +04:00
|
|
|
maven {
|
|
|
|
url "https://repo.athene.tech/repository/maven-central/"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url "https://repo.athene.tech/repository/maven-releases/"
|
|
|
|
}
|
2018-02-22 22:47:45 +04:00
|
|
|
}
|
|
|
|
|
2022-04-16 10:11:01 +04:00
|
|
|
sourceCompatibility = '11'
|
|
|
|
targetCompatibility = '11'
|
2018-02-22 22:47:45 +04:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
ext {
|
|
|
|
versionSLF4J = '1.7.24'
|
|
|
|
versionJetty = '9.3.16.v20170120'
|
2020-11-02 14:39:25 +04:00
|
|
|
versionJackson = '2.9.4'
|
2018-02-22 22:47:45 +04:00
|
|
|
}
|
|
|
|
|
2020-09-12 13:04:21 +04:00
|
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
|
|
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jetty'
|
2021-08-02 09:15:19 +04:00
|
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
|
2020-09-12 13:04:21 +04:00
|
|
|
implementation group: 'org.slf4j', name: 'slf4j-api', version: versionSLF4J
|
2022-04-16 10:11:01 +04:00
|
|
|
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '3.1.0'
|
2020-11-02 11:43:55 +04:00
|
|
|
implementation group: 'org.javassist', name: 'javassist', version: '3.25.0-GA'
|
2020-09-12 13:04:21 +04:00
|
|
|
implementation group: 'org.eclipse.jetty', name: 'jetty-servlet', version: versionJetty
|
2018-02-22 22:47:45 +04:00
|
|
|
|
2020-09-12 13:04:21 +04:00
|
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: versionJackson
|
|
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: versionJackson
|
|
|
|
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: versionJackson
|
2018-02-22 22:47:45 +04:00
|
|
|
|
2022-04-16 10:11:01 +04:00
|
|
|
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.5'
|
2018-02-22 22:47:45 +04:00
|
|
|
|
2021-08-02 09:15:19 +04:00
|
|
|
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'
|
|
|
|
|
2020-09-12 13:04:21 +04:00
|
|
|
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'
|
2018-02-22 22:47:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|