time-series-smoothing/build.gradle

53 lines
2.0 KiB
Groovy
Raw Normal View History

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
}
2023-01-08 12:39:40 +04:00
sourceCompatibility = '17'
targetCompatibility = '17'
2018-02-22 22:47:45 +04:00
dependencies {
ext {
versionSLF4J = '1.7.24'
versionJetty = '9.3.16.v20170120'
}
2023-01-08 12:39:40 +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-07-25 09:26:23 +04:00
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '3.0.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
2022-08-12 01:09:55 +04:00
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'
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
}