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

Commit

Permalink
Release 1.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
pkliczewski authored and openshift-merge-robot committed Jun 20, 2023
1 parent 45cce35 commit 7eadf5a
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<description>Compute aggregated test code coverage</description>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<revision>1.0.17-SNAPSHOT</revision>
<revision>1.0.17</revision>
</properties>

<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions notification-service-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>dev.parodos</groupId>
<artifactId>notification-service-sdk</artifactId>
<version>1.0.17-SNAPSHOT</version>
<version>1.0.17</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -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"
}
```

Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion notification-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

```

Expand Down
2 changes: 1 addition & 1 deletion notification-service/licenses/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion notification-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</developer>
</developers>
<properties>
<revision>1.0.17-SNAPSHOT</revision>
<revision>1.0.17</revision>
<flatten.version>1.3.0</flatten.version>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
6 changes: 3 additions & 3 deletions workflow-service-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>dev.parodos</groupId>
<artifactId>workflow-service-sdk</artifactId>
<version>1.0.17-SNAPSHOT</version>
<version>1.0.17</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -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"
}
```

Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion workflow-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ spring:
application:
name: parodos-workflow-service
title: Parodos Workflow Service
version: 1.0.17-SNAPSHOT
version: 1.0.17



Expand Down

0 comments on commit 7eadf5a

Please sign in to comment.