2021-08-02 09:15:19 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Anton Romanov - All Rights Reserved
|
|
|
|
* You may use, distribute and modify this code, please write to: romanov73@gmail.com.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-09-12 13:04:21 +04:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
|
|
|
id 'org.springframework.boot' version '2.3.3.RELEASE'
|
2020-11-07 14:13:56 +04:00
|
|
|
id "org.sonarqube" version "2.7"
|
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 {
|
2020-11-02 11:43:55 +04:00
|
|
|
mavenLocal()
|
2018-02-22 22:47:45 +04:00
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2020-09-12 13:04:21 +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
|
|
|
versionSwagger = '2.5.0'
|
|
|
|
}
|
|
|
|
|
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
|
2021-08-02 09:15:19 +04:00
|
|
|
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect'
|
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
|
|
|
|
2020-09-12 13:04:21 +04:00
|
|
|
implementation group: 'io.springfox', name: 'springfox-swagger2', version: versionSwagger
|
|
|
|
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: versionSwagger
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|