basic contact overview

This commit is contained in:
Jörg Henke
2022-04-07 20:52:38 +02:00
parent 94bec47d4d
commit 9fe9555853
73 changed files with 996 additions and 1488 deletions

View File

@ -1,77 +1,70 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.maven.apache.org/maven2" }
maven { url "https://plugins.gradle.org/m2/" }
maven {
url "https://gitlab.com/jottyfan/libs/-/raw/main"
}
jcenter()
}
dependencies {
classpath 'com.google.code.gson:gson:2.8.6'
classpath 'org.postgresql:postgresql:42.2.19'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:latest.release'
}
plugins {
id 'org.springframework.boot' version '2.6.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'war'
apply plugin: 'eclipse'
group = 'de.jottyfan'
version = '1.2.0'
sourceCompatibility = '11'
group = 'jottyfan'
version = '1.1.9.1'
ext['spring-framework.version'] = '5.3.18'
description = """timetrack"""
sourceCompatibility = 11
targetCompatibility = 11
sourceSets {
main.java.srcDirs = ['src/main/java']
main.resources.srcDirs = ['src/main/resources', 'src/main/webapp']
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "https://www.jottyfan.de/mvnrepo" }
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:17.0.1'
}
}
dependencies {
implementation 'org.jboss.weld.servlet:weld-servlet:2.4.8.Final'
implementation 'org.apache.logging.log4j:log4j-api:2.17.1'
implementation 'org.apache.logging.log4j:log4j-core:2.17.1'
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.17.1'
implementation 'de.jottyfan:timetrackjooq:0.1.0'
implementation 'org.webjars:bootstrap:5.1.3'
implementation 'org.webjars:font-awesome:5.15.4'
implementation 'org.webjars:jquery:3.6.0'
implementation 'org.webjars:popper.js:2.9.3'
implementation 'org.webjars:datatables:1.11.3'
implementation 'org.webjars:jquery-ui:1.13.0'
implementation 'org.webjars.bowergithub.datatables:datatables:1.10.21'
implementation 'org.keycloak:keycloak-spring-boot-starter:17.0.1'
implementation 'org.apache.myfaces.core:myfaces-api:2.3.8'
implementation 'org.apache.myfaces.core:myfaces-impl:2.3.8'
implementation 'net.bootsfaces:bootsfaces:1.5.0'
implementation 'org.postgresql:postgresql:42.2.19'
implementation 'org.jooq:jooq:3.14.4'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'org.jasypt:jasypt:1.9.3'
implementation 'javax.servlet:javax.servlet-api:4.0.1'
implementation 'org.apache.logging.log4j:log4j-core:2.16.0'
implementation 'org.apache.logging.log4j:log4j-api:2.16.0'
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.thymeleaf.extras:thymeleaf-extras-springsecurity5'
implementation 'de.jottyfan:timetrackjooq:0.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.0-M1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.0-M1'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.0.0'
implementation 'org.postgresql:postgresql:42.2.19'
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'
}
war {
archiveName 'timetrack.war'
manifest {
attributes('Implementation-Version': project.version)
}
test {
useJUnitPlatform()
}
// add version to manifest
springBoot {
buildInfo()
}