52 lines
1.7 KiB
Groovy
52 lines
1.7 KiB
Groovy
/*
|
|
* Copyright (C) 2021 Anton Romanov - All Rights Reserved
|
|
* You may use, distribute and modify this code, please write to: romanov73@gmail.com.
|
|
*
|
|
*/
|
|
|
|
plugins {
|
|
id 'java'
|
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
|
id 'org.springframework.boot' version '2.3.3.RELEASE'
|
|
id "org.sonarqube" version "2.7"
|
|
}
|
|
|
|
jar {
|
|
archivesBaseName='seminar'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "http://nexus-repository.athene.tech/repository/maven-central/"
|
|
}
|
|
}
|
|
|
|
sourceCompatibility = 11
|
|
targetCompatibility = 11
|
|
|
|
dependencies {
|
|
ext {
|
|
versionSLF4J = '1.7.24'
|
|
versionJetty = '9.3.16.v20170120'
|
|
versionJackson = '2.9.4'
|
|
versionSwagger = '2.5.0'
|
|
}
|
|
|
|
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.slf4j', name: 'slf4j-api', version: versionSLF4J
|
|
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect'
|
|
implementation group: 'org.javassist', name: 'javassist', version: '3.25.0-GA'
|
|
implementation group: 'org.eclipse.jetty', name: 'jetty-servlet', version: versionJetty
|
|
|
|
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'
|
|
|
|
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'
|
|
}
|
|
|
|
|