Skip to content
This repository was archived by the owner on Jul 23, 2024. It is now read-only.

Commit 84bf11f

Browse files
Parodos botopenshift-merge-robot
authored andcommitted
Release 1.0.19
1 parent fc4c7e9 commit 84bf11f

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

coverage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<description>Compute aggregated test code coverage</description>
1313
<properties>
1414
<maven.deploy.skip>true</maven.deploy.skip>
15-
<revision>1.0.19-SNAPSHOT</revision>
15+
<revision>1.0.19</revision>
1616
</properties>
1717

1818
<dependencies>

notification-service-sdk/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add this dependency to your project's POM:
3939
<dependency>
4040
<groupId>dev.parodos</groupId>
4141
<artifactId>notification-service-sdk</artifactId>
42-
<version>1.0.19-SNAPSHOT</version>
42+
<version>1.0.19</version>
4343
<scope>compile</scope>
4444
</dependency>
4545
```
@@ -55,7 +55,7 @@ Add this dependency to your project's build file:
5555
}
5656
5757
dependencies {
58-
implementation "dev.parodos:notification-service-sdk:1.0.19-SNAPSHOT"
58+
implementation "dev.parodos:notification-service-sdk:1.0.19"
5959
}
6060
```
6161

@@ -69,7 +69,7 @@ mvn clean package
6969

7070
Then manually install the following JARs:
7171

72-
* `target/notification-service-sdk-1.0.19-SNAPSHOT.jar`
72+
* `target/notification-service-sdk-1.0.19.jar`
7373
* `target/lib/*.jar`
7474

7575
## Getting Started

notification-service-sdk/src/main/java/com/redhat/parodos/notification/sdk/api/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private void init() {
143143
json = new JSON();
144144

145145
// Set default User-Agent.
146-
setUserAgent("OpenAPI-Generator/1.0.19-SNAPSHOT/java");
146+
setUserAgent("OpenAPI-Generator/1.0.19/java");
147147

148148
authentications = new HashMap<String, Authentication>();
149149
}

notification-service-sdk/src/main/java/com/redhat/parodos/notification/sdk/api/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
1616
public class Configuration {
1717

18-
public static final String VERSION = "1.0.19-SNAPSHOT";
18+
public static final String VERSION = "1.0.19";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

notification-service/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ From the root of the 'notification-service' folder, the follow command will star
4444

4545
```shell
4646

47-
java -jar -Dspring.profiles.active=local -Dserver.port=8081 target/notification-service-1.0.19-SNAPSHOT.jar
47+
java -jar -Dspring.profiles.active=local -Dserver.port=8081 target/notification-service-1.0.19.jar
4848

4949
```
5050

notification-service/licenses/THIRD-PARTY.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Lists of 158 third-party dependencies.
151151
(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)
152152
(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)
153153
(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)
154-
(Apache 2.0) spring-security-rsa (org.springframework.security:spring-security-rsa:1.0.19-SNAPSHOT.RELEASE - http://github.com/spring-projects/spring-security-oauth)
154+
(Apache 2.0) spring-security-rsa (org.springframework.security:spring-security-rsa:1.0.19.RELEASE - http://github.com/spring-projects/spring-security-oauth)
155155
(Apache License, Version 2.0) spring-security-test (org.springframework.security:spring-security-test:5.5.2 - https://spring.io/projects/spring-security)
156156
(Apache License, Version 2.0) spring-security-web (org.springframework.security:spring-security-web:5.5.2 - https://spring.io/projects/spring-security)
157157
(Apache 2.0) Swagger UI (org.webjars:swagger-ui:3.51.1 - http://webjars.org)

notification-service/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ spring:
22
application:
33
name: parodos-notification-service
44
title: Parodos Notification Service
5-
version: 1.0.19-SNAPSHOT
5+
version: 1.0.19
66
jackson:
77
default-property-inclusion: non_null
88
main:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</developer>
4343
</developers>
4444
<properties>
45-
<revision>1.0.19-SNAPSHOT</revision>
45+
<revision>1.0.19</revision>
4646
<flatten.version>1.3.0</flatten.version>
4747
<java.version>17</java.version>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

workflow-service-sdk/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add this dependency to your project's POM:
3939
<dependency>
4040
<groupId>dev.parodos</groupId>
4141
<artifactId>workflow-service-sdk</artifactId>
42-
<version>1.0.19-SNAPSHOT</version>
42+
<version>1.0.19</version>
4343
<scope>compile</scope>
4444
</dependency>
4545
```
@@ -55,7 +55,7 @@ Add this dependency to your project's build file:
5555
}
5656
5757
dependencies {
58-
implementation "dev.parodos:workflow-service-sdk:1.0.19-SNAPSHOT"
58+
implementation "dev.parodos:workflow-service-sdk:1.0.19"
5959
}
6060
```
6161

@@ -69,7 +69,7 @@ mvn clean package
6969

7070
Then manually install the following JARs:
7171

72-
* `target/workflow-service-sdk-1.0.19-SNAPSHOT.jar`
72+
* `target/workflow-service-sdk-1.0.19.jar`
7373
* `target/lib/*.jar`
7474

7575
## Getting Started

workflow-service-sdk/src/main/java/com/redhat/parodos/sdk/invoker/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private void init() {
143143
json = new JSON();
144144

145145
// Set default User-Agent.
146-
setUserAgent("OpenAPI-Generator/1.0.19-SNAPSHOT/java");
146+
setUserAgent("OpenAPI-Generator/1.0.19/java");
147147

148148
authentications = new HashMap<String, Authentication>();
149149
}

0 commit comments

Comments
 (0)