From cdde57e03346df505a691daca04108284357efd9 Mon Sep 17 00:00:00 2001 From: Thomas Peetz Date: Wed, 19 Aug 2026 16:42:16 +0200 Subject: [PATCH] remove deploy.gradle and use deploy--kontor.sh --- kontor-spring/deploy.gradle | 42 ------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 kontor-spring/deploy.gradle diff --git a/kontor-spring/deploy.gradle b/kontor-spring/deploy.gradle deleted file mode 100644 index 2298cdc..0000000 --- a/kontor-spring/deploy.gradle +++ /dev/null @@ -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 -}