Moved from `maven-portal-bom` to `gcube-bom`
This commit is contained in:
parent
1a012c7d1d
commit
6ea28b7b67
|
@ -2,11 +2,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
|
||||
# Changelog for "event-publisher-library"
|
||||
|
||||
## [v1.2.0]
|
||||
## [v1.2.0-SNAPSHOT]
|
||||
- Restored correct behavior for event publishing with workflow id only sent back
|
||||
- Extracted `AbstractHTTPWithJWTTokenAuthEventSender` class for easy subclassing
|
||||
- Added new outcome check methods to inspect last send and last check actions results and some other facilities
|
||||
- Better handling of exceptions and retrying behavior in case of read timeout. (Default connection timeout is 10s and read timeout now is 60s)
|
||||
- moved from `maven-portal-bom` to `gcube-bom`
|
||||
|
||||
## [v1.1.0]
|
||||
- Added `BufferedEventProcessor` to manual send bunch of events and controlling their output status (#23628)
|
||||
|
|
10
pom.xml
10
pom.xml
|
@ -13,15 +13,15 @@
|
|||
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>event-publisher-library</artifactId>
|
||||
<version>1.2.0</version>
|
||||
<version>1.2.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.gcube.distribution</groupId>
|
||||
<artifactId>maven-portal-bom</artifactId>
|
||||
<version>3.7.0</version>
|
||||
<artifactId>gcube-bom</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
@ -38,6 +38,8 @@
|
|||
<java.version>8</java.version>
|
||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||
<oidc-library.version>[1.2.0-SNAPSHOT,)</oidc-library.version>
|
||||
<slf4j-log4j12.version>1.6.4</slf4j-log4j12.version>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
|
@ -65,6 +67,7 @@
|
|||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>oidc-library</artifactId>
|
||||
<scope>compile</scope>
|
||||
<version>${oidc-library.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
|
@ -79,6 +82,7 @@
|
|||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-log4j12</artifactId>
|
||||
<version>${slf4j-log4j12.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
|
Loading…
Reference in New Issue