library upgrade

This commit is contained in:
2019-09-09 19:51:30 +02:00
parent 37337e0ebe
commit 57b23a9bdb
79 changed files with 4131 additions and 1666 deletions

View File

@ -8,10 +8,10 @@ buildscript {
}
dependencies {
classpath 'com.google.code.gson:gson:2.8.5'
classpath 'org.jooq:jooq-codegen:3.11.9'
classpath 'org.postgresql:postgresql:42.2.5'
classpath 'org.jooq:jooq-codegen:3.12.1'
classpath 'org.postgresql:postgresql:42.2.6'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:latest.release'
classpath 'nu.studer:gradle-jooq-plugin:3.0.2'
classpath 'nu.studer:gradle-jooq-plugin:3.0.3'
}
}
@ -22,7 +22,7 @@ apply plugin: 'eclipse'
apply plugin: 'nu.studer.jooq'
group = 'jottyfan'
version = '1.0.4'
version = '1.0.5'
description = """timetrack"""
@ -36,36 +36,37 @@ tasks.withType(JavaCompile) {
repositories {
mavenLocal()
mavenCentral()
maven { url "http://vps207887.ovh.net/mvnrepo" }
maven { url "https://www.jottyfan.de/mvnrepo" }
maven { url "https://repo.maven.apache.org/maven2" }
}
dependencies {
compile 'org.jboss.weld.servlet:weld-servlet:2.4.8.Final'
compile 'org.apache.myfaces.core:myfaces-api:2.3.3'
compile 'org.apache.myfaces.core:myfaces-impl:2.3.3'
compile 'net.bootsfaces:bootsfaces:1.4.1'
compile 'de.jooqFaces:jooqFaces:0.1.3-SNAPSHOT'
compile 'org.postgresql:postgresql:42.2.5'
compile 'org.jooq:jooq:3.11.9'
compile 'org.jooq:jooq-codegen:3.11.9'
compile 'org.apache.myfaces.core:myfaces-api:2.3.4'
compile 'org.apache.myfaces.core:myfaces-impl:2.3.4'
compile 'net.bootsfaces:bootsfaces:1.4.2'
compile 'de.jooqFaces:jooqFaces:0.4.6'
compile 'org.postgresql:postgresql:42.2.6'
compile 'org.jooq:jooq:3.12.1'
compile 'org.jooq:jooq-codegen:3.12.1'
compile 'com.google.code.gson:gson:2.8.5'
compile 'org.jasypt:jasypt:1.9.2'
compile 'org.jasypt:jasypt:1.9.3'
compile 'javax.servlet:javax.servlet-api:4.0.1'
compile 'org.apache.logging.log4j:log4j-core:2.11.1'
compile 'org.apache.logging.log4j:log4j-api:2.11.1'
compile 'org.apache.logging.log4j:log4j-core:2.12.1'
compile 'org.apache.logging.log4j:log4j-api:2.12.1'
testCompile 'junit:junit:4.12'
testCompile 'org.junit.jupiter:junit-jupiter-api:5.5.2'
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
runtime 'org.postgresql:postgresql:42.2.5'
runtime 'org.postgresql:postgresql:42.2.6'
jooqRuntime 'org.postgresql:postgresql:42.2.5'
jooqRuntime 'org.postgresql:postgresql:42.2.6'
}
jooq {
edition = 'OSS'
version = '3.11.9'
version = '3.12.1'
timetrack (sourceSets.main) {
jdbc {
driver = 'org.postgresql.Driver'