diff --git a/Makefile b/Makefile
index 1efe52bf6..ba8281f9c 100644
--- a/Makefile
+++ b/Makefile
@@ -79,14 +79,14 @@ clean: ## Clean all modules
all: mvn-checks java-checks install ## Build all modules
install: ARGS = $(FAST_BUILD_ARGS)
-install: clean
- $(MAVEN) $(ARGS) install
+install:
+ $(MAVEN) $(ARGS) install -Dmaven.test.skip=true
deploy: clean ## push snapshot modules to maven central
$(MAVEN) deploy
release: ## release and push modules to maven central
- $(MAVEN) deploy -P release
+ $(MAVEN) deploy -P release -Dmaven.test.skip=true
fast-build: ARGS = $(FAST_BUILD_ARGS) ## Build all modules without running the tests and generate javadoc
fast-build: all
diff --git a/coverage/pom.xml b/coverage/pom.xml
index 5af889670..7555a8bcb 100644
--- a/coverage/pom.xml
+++ b/coverage/pom.xml
@@ -12,7 +12,7 @@
Compute aggregated test code coverage
true
- 1.0.17-SNAPSHOT
+ 1.0.17
diff --git a/notification-service-sdk/README.md b/notification-service-sdk/README.md
index 7a1345014..7d68b5c6b 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.17-SNAPSHOT
+ 1.0.17
compile
```
@@ -55,7 +55,7 @@ Add this dependency to your project's build file:
}
dependencies {
- implementation "dev.parodos:notification-service-sdk:1.0.17-SNAPSHOT"
+ implementation "dev.parodos:notification-service-sdk:1.0.17"
}
```
@@ -69,7 +69,7 @@ mvn clean package
Then manually install the following JARs:
-* `target/notification-service-sdk-1.0.17-SNAPSHOT.jar`
+* `target/notification-service-sdk-1.0.17.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 2288f3145..02c0d1925 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.17-SNAPSHOT/java");
+ setUserAgent("OpenAPI-Generator/1.0.17/java");
authentications = new HashMap();
}
diff --git a/notification-service/README.md b/notification-service/README.md
index 3f4bb8dae..d6f2177ef 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.17-SNAPSHOT.jar
+java -jar -Dspring.profiles.active=local -Dserver.port=8081 target/notification-service-1.0.17.jar
```
diff --git a/notification-service/licenses/THIRD-PARTY.txt b/notification-service/licenses/THIRD-PARTY.txt
index c9f7c510f..09250c098 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.17-SNAPSHOT.RELEASE - http://github.com/spring-projects/spring-security-oauth)
+ (Apache 2.0) spring-security-rsa (org.springframework.security:spring-security-rsa:1.0.17.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 4d0192c10..d3fa1689c 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.17-SNAPSHOT
+ version: 1.0.17
jackson:
default-property-inclusion: non_null
main:
diff --git a/pom.xml b/pom.xml
index bbc016e9c..3edb5f707 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,7 +42,7 @@
- 1.0.17-SNAPSHOT
+ 1.0.17
1.3.0
17
UTF-8
diff --git a/workflow-service-sdk/README.md b/workflow-service-sdk/README.md
index 4fc485727..d5195f635 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.17-SNAPSHOT
+ 1.0.17
compile
```
@@ -55,7 +55,7 @@ Add this dependency to your project's build file:
}
dependencies {
- implementation "dev.parodos:workflow-service-sdk:1.0.17-SNAPSHOT"
+ implementation "dev.parodos:workflow-service-sdk:1.0.17"
}
```
@@ -69,7 +69,7 @@ mvn clean package
Then manually install the following JARs:
-* `target/workflow-service-sdk-1.0.17-SNAPSHOT.jar`
+* `target/workflow-service-sdk-1.0.17.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 f0df0aa04..279ae5d16 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.17-SNAPSHOT/java");
+ setUserAgent("OpenAPI-Generator/1.0.17/java");
authentications = new HashMap();
}
diff --git a/workflow-service/src/main/resources/application.yml b/workflow-service/src/main/resources/application.yml
index cdd38a7dc..70e6083e7 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.17-SNAPSHOT
+ version: 1.0.17