From 97ebaf301eb93e5b1ed2fd373f441f006c48fa1c Mon Sep 17 00:00:00 2001 From: Piotr Kliczewski Date: Thu, 15 Jun 2023 23:02:54 +0200 Subject: [PATCH] Release 1.0.16 --- Makefile | 2 +- coverage/pom.xml | 2 +- notification-service-sdk/README.md | 6 +++--- .../com/redhat/parodos/notification/sdk/api/ApiClient.java | 2 +- notification-service/README.md | 2 +- notification-service/licenses/THIRD-PARTY.txt | 2 +- notification-service/src/main/resources/application.yml | 2 +- pom.xml | 2 +- workflow-service-sdk/README.md | 6 +++--- .../main/java/com/redhat/parodos/sdk/invoker/ApiClient.java | 2 +- workflow-service/src/main/resources/application.yml | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Makefile b/Makefile index 08d834712..07c13831d 100644 --- a/Makefile +++ b/Makefile @@ -85,7 +85,7 @@ install: clean deploy: clean ## push snapshot modules to maven central $(MAVEN) deploy -release: clean ## release and push modules to maven central +release: ## release and push modules to maven central $(MAVEN) deploy -P release fast-build: ARGS = $(FAST_BUILD_ARGS) ## Build all modules without running the tests and generate javadoc diff --git a/coverage/pom.xml b/coverage/pom.xml index 3ae581a58..e7591dbbe 100644 --- a/coverage/pom.xml +++ b/coverage/pom.xml @@ -12,7 +12,7 @@ Compute aggregated test code coverage true - 1.0.16-SNAPSHOT + 1.0.16 diff --git a/notification-service-sdk/README.md b/notification-service-sdk/README.md index dfc206463..7e612fd8a 100644 --- a/notification-service-sdk/README.md +++ b/notification-service-sdk/README.md @@ -39,7 +39,7 @@ Add this dependency to your project's POM: dev.parodos notification-service-sdk - 1.0.16-SNAPSHOT + 1.0.16 compile ``` @@ -55,7 +55,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "dev.parodos:notification-service-sdk:1.0.16-SNAPSHOT" + implementation "dev.parodos:notification-service-sdk:1.0.16" } ``` @@ -69,7 +69,7 @@ mvn clean package Then manually install the following JARs: -* `target/notification-service-sdk-1.0.16-SNAPSHOT.jar` +* `target/notification-service-sdk-1.0.16.jar` * `target/lib/*.jar` ## Getting Started diff --git a/notification-service-sdk/src/main/java/com/redhat/parodos/notification/sdk/api/ApiClient.java b/notification-service-sdk/src/main/java/com/redhat/parodos/notification/sdk/api/ApiClient.java index 4598e1dd6..893ebd7be 100644 --- a/notification-service-sdk/src/main/java/com/redhat/parodos/notification/sdk/api/ApiClient.java +++ b/notification-service-sdk/src/main/java/com/redhat/parodos/notification/sdk/api/ApiClient.java @@ -143,7 +143,7 @@ private void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/1.0.16-SNAPSHOT/java"); + setUserAgent("OpenAPI-Generator/1.0.16/java"); authentications = new HashMap(); } diff --git a/notification-service/README.md b/notification-service/README.md index 6aa206fd1..89b2380a7 100644 --- a/notification-service/README.md +++ b/notification-service/README.md @@ -44,7 +44,7 @@ From the root of the 'notification-service' folder, the follow command will star ```shell -java -jar -Dspring.profiles.active=local -Dserver.port=8081 target/notification-service-1.0.16-SNAPSHOT.jar +java -jar -Dspring.profiles.active=local -Dserver.port=8081 target/notification-service-1.0.16.jar ``` diff --git a/notification-service/licenses/THIRD-PARTY.txt b/notification-service/licenses/THIRD-PARTY.txt index 83e55125a..19cc3b555 100644 --- a/notification-service/licenses/THIRD-PARTY.txt +++ b/notification-service/licenses/THIRD-PARTY.txt @@ -151,7 +151,7 @@ Lists of 158 third-party dependencies. (Apache License, Version 2.0) spring-security-oauth2-core (org.springframework.security:spring-security-oauth2-core:5.5.2 - https://spring.io/projects/spring-security) (Apache License, Version 2.0) spring-security-oauth2-jose (org.springframework.security:spring-security-oauth2-jose:5.5.2 - https://spring.io/projects/spring-security) (Apache License, Version 2.0) spring-security-oauth2-resource-server (org.springframework.security:spring-security-oauth2-resource-server:5.5.2 - https://spring.io/projects/spring-security) - (Apache 2.0) spring-security-rsa (org.springframework.security:spring-security-rsa:1.0.16-SNAPSHOT.RELEASE - http://github.com/spring-projects/spring-security-oauth) + (Apache 2.0) spring-security-rsa (org.springframework.security:spring-security-rsa:1.0.16.RELEASE - http://github.com/spring-projects/spring-security-oauth) (Apache License, Version 2.0) spring-security-test (org.springframework.security:spring-security-test:5.5.2 - https://spring.io/projects/spring-security) (Apache License, Version 2.0) spring-security-web (org.springframework.security:spring-security-web:5.5.2 - https://spring.io/projects/spring-security) (Apache 2.0) Swagger UI (org.webjars:swagger-ui:3.51.1 - http://webjars.org) diff --git a/notification-service/src/main/resources/application.yml b/notification-service/src/main/resources/application.yml index 08b963fcb..a11d8db6e 100644 --- a/notification-service/src/main/resources/application.yml +++ b/notification-service/src/main/resources/application.yml @@ -2,7 +2,7 @@ spring: application: name: parodos-notification-service title: Parodos Notification Service - version: 1.0.16-SNAPSHOT + version: 1.0.16 jackson: default-property-inclusion: non_null main: diff --git a/pom.xml b/pom.xml index 1c50b5f16..96b33c33a 100644 --- a/pom.xml +++ b/pom.xml @@ -42,7 +42,7 @@ - 1.0.16-SNAPSHOT + 1.0.16 1.3.0 17 UTF-8 diff --git a/workflow-service-sdk/README.md b/workflow-service-sdk/README.md index 2a9b31c74..4df8fc3f8 100644 --- a/workflow-service-sdk/README.md +++ b/workflow-service-sdk/README.md @@ -39,7 +39,7 @@ Add this dependency to your project's POM: dev.parodos workflow-service-sdk - 1.0.16-SNAPSHOT + 1.0.16 compile ``` @@ -55,7 +55,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "dev.parodos:workflow-service-sdk:1.0.16-SNAPSHOT" + implementation "dev.parodos:workflow-service-sdk:1.0.16" } ``` @@ -69,7 +69,7 @@ mvn clean package Then manually install the following JARs: -* `target/workflow-service-sdk-1.0.16-SNAPSHOT.jar` +* `target/workflow-service-sdk-1.0.16.jar` * `target/lib/*.jar` ## Getting Started diff --git a/workflow-service-sdk/src/main/java/com/redhat/parodos/sdk/invoker/ApiClient.java b/workflow-service-sdk/src/main/java/com/redhat/parodos/sdk/invoker/ApiClient.java index bc75e08a5..deca2834d 100644 --- a/workflow-service-sdk/src/main/java/com/redhat/parodos/sdk/invoker/ApiClient.java +++ b/workflow-service-sdk/src/main/java/com/redhat/parodos/sdk/invoker/ApiClient.java @@ -143,7 +143,7 @@ private void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/1.0.16-SNAPSHOT/java"); + setUserAgent("OpenAPI-Generator/1.0.16/java"); authentications = new HashMap(); } diff --git a/workflow-service/src/main/resources/application.yml b/workflow-service/src/main/resources/application.yml index 433ac2634..03ad66968 100644 --- a/workflow-service/src/main/resources/application.yml +++ b/workflow-service/src/main/resources/application.yml @@ -2,7 +2,7 @@ spring: application: name: parodos-workflow-service title: Parodos Workflow Service - version: 1.0.16-SNAPSHOT + version: 1.0.16