Jottyfan
2023-03-26 20:31:15 +02:00
parent d20d9b9dcf
commit 13682b24cc
18 changed files with 93 additions and 19 deletions

View File

@ -1,3 +1,19 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.maven.apache.org/maven2" }
maven { url "https://plugins.gradle.org/m2/" }
jcenter()
}
dependencies {
classpath 'org.jooq:jooq-codegen:3.16.4'
classpath 'org.postgresql:postgresql:42.3.2'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:latest.release'
classpath 'nu.studer.jooq:nu.studer.jooq.gradle.plugin:7.1.1'
}
}
plugins {
id 'nu.studer.jooq' version '7.1.1'
}
@ -6,7 +22,7 @@ apply plugin: 'java'
apply plugin: 'maven-publish'
group = 'de.jottyfan'
version = '2021.02'
version = '2023.03'
description = """COJooq"""
@ -16,6 +32,7 @@ targetCompatibility = 11
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.maven.apache.org/maven2" }
}
dependencies {
@ -81,9 +98,8 @@ publishing {
}
repositories {
maven {
url = layout.buildDirectory.dir("/home/henkej/git/libs/")
url = layout.buildDirectory.dir("/home/jotty/git/libs/")
}
}
}