Vorbereitung Release 03.0 #94

Merged
tpeetz merged 115 commits from develop/0.3.0 into main 2026-08-25 06:01:18 +00:00
Showing only changes of commit cdde57e033 - Show all commits
-42
View File
@@ -1,42 +0,0 @@
buildscript {
repositories {
maven {
url = uri("https://nexus.thpeetz.de/repository/maven-central")
}
}
dependencies {
classpath "de.thpeetz:kontor-spring:0.3.0-SNAPSHOT"
}
}
plugins {
id 'java'
}
repositories {
maven {
url = uri("https://nexus.thpeetz.de/repository/maven-central")
}
}
configurations {
deployConf {
canBeResolved = true
canBeConsumed = true
}
}
dependencies {
deployConf "de.thpeetz:kontor-spring:0.3.0-SNAPSHOT"
implementation "de.thpeetz:kontor-spring:0.3.0-SNAPSHOT"
}
def destinationDir = file("/home/tpeetz/prod")
task deployKontor(type: Copy) {
inputs.files(configurations.implementation)
outputs.dir(destinationDir)
from configurations.implementation
//from buildscript.configurations.classpath
into destinationDir
}