2022-03-07 14:25:42 +04:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2022-03-15 10:44:43 +04:00
|
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
|
|
id 'org.springframework.boot' version '2.6.4'
|
2022-03-07 14:25:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2022-03-08 00:10:48 +04:00
|
|
|
archivesBaseName='seminar'
|
2022-03-07 14:25:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2022-03-08 00:10:48 +04:00
|
|
|
maven {
|
2022-03-08 00:45:44 +04:00
|
|
|
url "http://repo.athene.tech/repository/maven-central/"
|
2022-03-15 10:44:43 +04:00
|
|
|
allowInsecureProtocol(true)
|
2022-03-08 00:10:48 +04:00
|
|
|
}
|
2022-03-07 14:25:42 +04:00
|
|
|
}
|
|
|
|
|
2022-03-15 10:44:43 +04:00
|
|
|
sourceCompatibility = 17
|
|
|
|
targetCompatibility = 17
|
2022-03-07 14:25:42 +04:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
ext {
|
|
|
|
versionSLF4J = '1.7.24'
|
|
|
|
versionJetty = '9.3.16.v20170120'
|
|
|
|
versionJackson = '2.9.4'
|
|
|
|
versionSwagger = '2.5.0'
|
|
|
|
}
|
|
|
|
|
2022-03-09 00:10:50 +04:00
|
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
|
|
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jetty'
|
2022-03-07 14:25:42 +04:00
|
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
|
2022-03-09 00:10:50 +04:00
|
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation'
|
2022-03-09 11:27:16 +04:00
|
|
|
implementation group: 'org.springframework.boot', name:'spring-boot-starter-data-jpa'
|
2022-03-09 18:04:09 +04:00
|
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security'
|
2022-03-09 00:10:50 +04:00
|
|
|
implementation group: 'org.slf4j', name: 'slf4j-api', version: versionSLF4J
|
2022-03-15 10:44:43 +04:00
|
|
|
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '3.1.0'
|
2022-03-09 18:04:09 +04:00
|
|
|
implementation group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity5'
|
2022-03-08 21:21:08 +04:00
|
|
|
implementation group: 'com.h2database', name:'h2'
|
|
|
|
implementation group: 'javax.xml.bind', name:'jaxb-api'
|
|
|
|
implementation group: 'org.javassist', name:'javassist'
|
|
|
|
|
2022-03-07 14:25:42 +04:00
|
|
|
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'
|
|
|
|
}
|
|
|
|
|
|
|
|
|