Skip to content

Commit

Permalink
Merge branch 'release/4.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
zambrovski committed Mar 4, 2025
2 parents 168e76a + cc74330 commit 7ef54fb
Show file tree
Hide file tree
Showing 118 changed files with 840 additions and 715 deletions.
2 changes: 1 addition & 1 deletion bom/datapool-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.holunda.polyflow</groupId>
<artifactId>polyflow-parent</artifactId>
<version>4.3.0</version>
<version>4.4.0</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand Down
21 changes: 13 additions & 8 deletions bom/parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.holunda.polyflow</groupId>
<artifactId>polyflow-root</artifactId>
<version>4.3.0</version>
<version>4.4.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand All @@ -21,11 +21,11 @@
<springboot.version>3.2.6</springboot.version>
<camunda-commons-typed-values.version>7.22.0</camunda-commons-typed-values.version>

<axon-bom.version>4.10.4</axon-bom.version>
<axon-kotlin.version>4.10.0</axon-kotlin.version>
<axon-bom.version>4.11.1</axon-bom.version>
<axon-kotlin.version>4.11.0</axon-kotlin.version>
<axon-gateway-extension.version>2.1.0</axon-gateway-extension.version>

<awaitility.version>4.2.2</awaitility.version>
<awaitility.version>4.3.0</awaitility.version>
<mockito-kotlin.version>5.4.0</mockito-kotlin.version>
<jgiven.version>2.0.1</jgiven.version>
<jgiven-kotlin.version>2.0.1.0</jgiven-kotlin.version>
Expand Down Expand Up @@ -162,6 +162,11 @@
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.toolisticon.spring</groupId>
<artifactId>spring-boot-conditions</artifactId>
<version>1.0.0</version>
</dependency>

<dependency>
<groupId>org.camunda.commons</groupId>
Expand Down Expand Up @@ -197,7 +202,7 @@

<!-- Logging -->
<dependency>
<groupId>io.github.microutils</groupId>
<groupId>io.github.oshai</groupId>
<artifactId>kotlin-logging-jvm</artifactId>
<version>${kotlin-logging.version}</version>
</dependency>
Expand Down Expand Up @@ -273,7 +278,7 @@
<artifactId>kotlin-reflect</artifactId>
</dependency>
<dependency>
<groupId>io.github.microutils</groupId>
<groupId>io.github.oshai</groupId>
<artifactId>kotlin-logging-jvm</artifactId>
</dependency>
<dependency>
Expand Down Expand Up @@ -372,7 +377,7 @@
<!-- java compiler -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.14.0</version>
<configuration>
<encoding>UTF-8</encoding>
<source>${java.version}</source>
Expand Down Expand Up @@ -620,7 +625,7 @@
<!-- Install -->
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.3</version>
<version>3.1.4</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
2 changes: 1 addition & 1 deletion bom/taskpool-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.holunda.polyflow</groupId>
<artifactId>polyflow-parent</artifactId>
<version>4.3.0</version>
<version>4.4.0</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand Down
7 changes: 3 additions & 4 deletions core/bus-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.holunda.polyflow</groupId>
<artifactId>polyflow-parent</artifactId>
<version>4.3.0</version>
<version>4.4.0</version>
<relativePath>../../bom/parent/pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -60,9 +60,8 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<scope>provided</scope>
<groupId>io.toolisticon.spring</groupId>
<artifactId>spring-boot-conditions</artifactId>
</dependency>

<!-- For test only -->
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ package io.holunda.polyflow.bus.jackson.config

import com.fasterxml.jackson.databind.ObjectMapper
import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
import io.holunda.polyflow.bus.jackson.annotation.ConditionalOnMissingQualifiedBean
import io.github.oshai.kotlinlogging.KotlinLogging
import io.holunda.polyflow.bus.jackson.configurePolyflowJacksonObjectMapper
import mu.KLogging
import io.toolisticon.spring.condition.ConditionalOnMissingQualifiedBean
import org.springframework.beans.factory.annotation.Qualifier
import org.springframework.context.annotation.Bean

private val logger = KotlinLogging.logger {}

/**
* No @configuration required, used as autoconfiguration.
*/
class FallbackPayloadObjectMapperAutoConfiguration {

companion object : KLogging() {
companion object {
const val PAYLOAD_OBJECT_MAPPER = "payloadObjectMapper"
}

Expand Down
2 changes: 1 addition & 1 deletion core/datapool/datapool-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.holunda.polyflow</groupId>
<artifactId>polyflow-datapool-parent</artifactId>
<version>4.3.0</version>
<version>4.4.0</version>
</parent>

<artifactId>polyflow-datapool-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/datapool/datapool-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.holunda.polyflow</groupId>
<artifactId>polyflow-datapool-parent</artifactId>
<version>4.3.0</version>
<version>4.4.0</version>
</parent>

<artifactId>polyflow-datapool-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import io.holunda.polyflow.datapool.core.business.CreateOrUpdateCommandHandler
import io.holunda.polyflow.datapool.core.business.DataEntryAggregate
import io.holunda.polyflow.datapool.core.business.upcaster.DataEntryCreatedEventUpcaster
import io.holunda.polyflow.datapool.core.repository.FirstEventOnlyEventSourcingRepository
import mu.KLogging
import org.axonframework.common.caching.Cache
import org.axonframework.common.caching.WeakReferenceCache
import org.axonframework.eventsourcing.EventCountSnapshotTriggerDefinition
Expand All @@ -22,7 +21,6 @@ import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.context.annotation.Import


/**
* Configuration of polyflow data pool core axon setup.
*/
Expand All @@ -33,7 +31,7 @@ import org.springframework.context.annotation.Import
DataEntryCreatedEventUpcaster::class
)
class DataPoolCoreAxonConfiguration {
companion object : KLogging() {
companion object {
const val DATA_ENTRY_REPOSITORY = "dataEntryEventSourcingRepository"
const val DATA_ENTRY_SNAPSHOTTER = "dataEntrySnapshotter"
const val DATA_ENTRY_CACHE = "dataEntryCache"
Expand Down
Loading

0 comments on commit 7ef54fb

Please sign in to comment.