From a113f08ddc021a21820cb315a18dd92135481b2e Mon Sep 17 00:00:00 2001 From: Thomas Peetz Date: Tue, 25 Aug 2026 09:43:49 +0200 Subject: [PATCH] create release 0.3.0 --- deploy-kontor.sh | 2 +- kontor-doc/gradle.properties | 2 +- kontor-spring/Containerfile | 2 +- kontor-spring/Containerfile.local | 2 +- kontor-spring/gradle.properties | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deploy-kontor.sh b/deploy-kontor.sh index d5a018b..bae2c49 100755 --- a/deploy-kontor.sh +++ b/deploy-kontor.sh @@ -4,7 +4,7 @@ NEXUS_URL=https://nexus.thpeetz.de MAVEN_REPO=maven-snapshots GROUP_ID=de.thpeetz ARTIFACT_ID=kontor-spring -VERSION=0.3.0-SNAPSHOT +VERSION=0.3.0 FILE_EXTENSION=jar download_url=$(curl -X GET "${NEXUS_URL}/service/rest/v1/search/assets?repository=${MAVEN_REPO}&maven.groupId=${GROUP_ID}&maven.artifactId=${ARTIFACT_ID}&maven.baseVersion=${VERSION}&maven.extension=${FILE_EXTENSION}" -H "accept: application/json" | jq -rc '.items | .[].downloadUrl' | sort | tail -n 1) diff --git a/kontor-doc/gradle.properties b/kontor-doc/gradle.properties index aae9744..acdcbb9 100644 --- a/kontor-doc/gradle.properties +++ b/kontor-doc/gradle.properties @@ -1,7 +1,7 @@ # This file was generated by the Gradle 'init' task. # https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties description='Kontor Documentation' -version=0.3.0-SNAPSHOT +version=0.3.0 group=de.thpeetz org.gradle.configuration-cache=true diff --git a/kontor-spring/Containerfile b/kontor-spring/Containerfile index 34017e6..07c0956 100644 --- a/kontor-spring/Containerfile +++ b/kontor-spring/Containerfile @@ -14,7 +14,7 @@ FROM docker.io/alpine/java:21-jdk AS run RUN mkdir -p /logs -COPY --from=builder /build/libs/kontor-spring-0.3.0-SNAPSHOT.jar app.jar +COPY --from=builder /build/libs/kontor-spring-0.3.0.jar app.jar EXPOSE 8100 diff --git a/kontor-spring/Containerfile.local b/kontor-spring/Containerfile.local index 3f3d331..012af00 100644 --- a/kontor-spring/Containerfile.local +++ b/kontor-spring/Containerfile.local @@ -2,7 +2,7 @@ FROM docker.io/alpine/java:21-jdk AS run RUN mkdir -p /logs -COPY ./build/libs/kontor-spring-0.3.0-SNAPSHOT.jar app.jar +COPY ./build/libs/kontor-spring-0.3.0.jar app.jar EXPOSE 8100 diff --git a/kontor-spring/gradle.properties b/kontor-spring/gradle.properties index 9a561e0..021545e 100644 --- a/kontor-spring/gradle.properties +++ b/kontor-spring/gradle.properties @@ -1,5 +1,5 @@ description='Kontor with Spring Boot' -version=0.3.0-SNAPSHOT +version=0.3.0 group=de.thpeetz nexusUser=kontor nexusPassword=kontorNexus