added profile
This commit is contained in:
28
build.gradle
28
build.gradle
@ -7,15 +7,15 @@ buildscript {
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'org.jooq:jooq-codegen:3.15.1'
|
||||
classpath 'org.postgresql:postgresql:42.2.23'
|
||||
classpath 'org.jooq:jooq-codegen:3.18.6'
|
||||
classpath 'org.postgresql:postgresql:42.6.0'
|
||||
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:latest.release'
|
||||
classpath 'nu.studer.jooq:nu.studer.jooq.gradle.plugin:6.0'
|
||||
classpath 'nu.studer.jooq:nu.studer.jooq.gradle.plugin:8.2.1'
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'nu.studer.jooq' version '6.0'
|
||||
id 'nu.studer.jooq' version '8.2.1'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
@ -23,14 +23,14 @@ apply plugin: 'maven-publish'
|
||||
apply plugin: 'eclipse'
|
||||
|
||||
group = 'de.jottyfan'
|
||||
version = '0.1.1'
|
||||
version = '0.1.2'
|
||||
def artifactId = 'timetrackjooq'
|
||||
def versionNumber = version
|
||||
|
||||
description = """timetrackjooq"""
|
||||
|
||||
sourceCompatibility = 11
|
||||
targetCompatibility = 11
|
||||
sourceCompatibility = 17
|
||||
targetCompatibility = 17
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = 'UTF-8'
|
||||
@ -43,17 +43,17 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.jooq:jooq:3.15.1'
|
||||
implementation 'org.jooq:jooq-codegen:3.15.1'
|
||||
implementation 'org.jooq:jooq:3.18.6'
|
||||
implementation 'org.jooq:jooq-codegen:3.18.6'
|
||||
|
||||
implementation 'org.postgresql:postgresql:42.2.23'
|
||||
implementation 'org.postgresql:postgresql:42.6.0'
|
||||
|
||||
jooqGenerator 'org.postgresql:postgresql:42.2.23'
|
||||
jooqGenerator 'org.postgresql:postgresql:42.6.0'
|
||||
}
|
||||
|
||||
jooq {
|
||||
edition = nu.studer.gradle.jooq.JooqEdition.OSS
|
||||
version = '3.15.1'
|
||||
version = '3.18.6'
|
||||
configurations {
|
||||
timetrack {
|
||||
generateSchemaSourceOnCompilation = false
|
||||
@ -62,8 +62,8 @@ jooq {
|
||||
jdbc {
|
||||
driver = 'org.postgresql.Driver'
|
||||
url = 'jdbc:postgresql://localhost:5432/timetrack'
|
||||
user = dbUsername
|
||||
password = dbPassword
|
||||
user = 'jooq'
|
||||
password = 'jooq'
|
||||
}
|
||||
generator {
|
||||
name = 'org.jooq.codegen.DefaultGenerator'
|
||||
|
Reference in New Issue
Block a user