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'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'org.springframework.boot' version '2.3.3.RELEASE'
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-11-02 11:43:55 +04:00
maven {
url "https://repository.primefaces.org/"
}
2018-02-22 22:47:45 +04:00
}
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'
versionJackson = '2.8.7'
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-security'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jetty'
implementation group: 'org.slf4j', name: 'slf4j-api', version: versionSLF4J
2020-11-02 11:43:55 +04:00
implementation group: 'org.primefaces', name: 'primefaces', version: '7.0'
implementation group: 'net.bootsfaces', name: 'bootsfaces', version: '1.4.2'
implementation group: 'org.joinfaces', name: 'jsf-spring-boot-starter', version: '4.0.8'
implementation group: 'org.javassist', name: 'javassist', version: '3.25.0-GA'
implementation group: 'org.primefaces.themes', name: 'all-themes', version: '1.0.10'
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
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
}