75 lines
2.2 KiB
Groovy
75 lines
2.2 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.6.5'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'de.jottyfan'
|
|
version = '1.2.8'
|
|
sourceCompatibility = '11'
|
|
|
|
ext['spring-framework.version'] = '5.3.18'
|
|
|
|
description = """timetrack"""
|
|
|
|
sourceCompatibility = 11
|
|
targetCompatibility = 11
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven { url "https://www.jottyfan.de/libs" }
|
|
maven { url "https://repo.maven.apache.org/maven2" }
|
|
// maven { url "https://gitlab.com/jottyfan/libs/-/raw/main" }
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom 'org.keycloak.bom:keycloak-adapter-bom:21.1.1'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
|
|
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.20.0'
|
|
|
|
implementation 'org.webjars:bootstrap:5.2.3'
|
|
implementation 'org.webjars:font-awesome:5.15.4'
|
|
implementation 'org.webjars:jquery:3.6.4'
|
|
implementation 'org.webjars:popper.js:2.9.3'
|
|
implementation 'org.webjars:datatables:1.13.2'
|
|
implementation 'org.webjars:jquery-ui:1.13.2'
|
|
implementation 'org.webjars:fullcalendar:5.11.3'
|
|
|
|
implementation 'com.google.code.gson:gson:2.9.0';
|
|
|
|
implementation 'org.webjars.bowergithub.datatables:datatables:1.10.21'
|
|
|
|
implementation 'org.keycloak:keycloak-spring-boot-starter:17.0.1'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-jooq'
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-test'
|
|
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
|
|
implementation 'de.jottyfan:timetrackjooq:0.1.1'
|
|
|
|
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.0.0'
|
|
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'org.springframework.security:spring-security-test'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
// add version to manifest
|
|
springBoot {
|
|
buildInfo()
|
|
}
|