-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #852
- Loading branch information
Lars Bilger
committed
Sep 11, 2023
1 parent
8537828
commit 26aca30
Showing
20 changed files
with
30 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
core/bus-jackson/src/main/resources/META-INF/spring.factories
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
io.holunda.polyflow.bus.jackson.config.FallbackPayloadObjectMapperAutoConfiguration |
3 changes: 3 additions & 0 deletions
3
...tapool/datapool-core/src/test/resources/db/migrations/V0_0_3__axon_sequence_per_table.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
drop SEQUENCE hibernate_sequence; | ||
create sequence association_value_entry_seq start with 1 increment by 50; | ||
create sequence domain_event_entry_seq start with 1 increment by 50; |
3 changes: 3 additions & 0 deletions
3
...skpool/taskpool-core/src/test/resources/db/migrations/V0_0_3__axon_sequence_per_table.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
drop SEQUENCE hibernate_sequence; | ||
create sequence association_value_entry_seq start with 1 increment by 50; | ||
create sequence domain_event_entry_seq start with 1 increment by 50; |
2 changes: 0 additions & 2 deletions
2
integration/camunda-bpm/engine-client/src/main/resources/META-INF/spring.factories
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
io.holunda.polyflow.client.camunda.CamundaEngineClientAutoConfiguration |
5 changes: 0 additions & 5 deletions
5
integration/camunda-bpm/springboot-starter/src/main/resources/META-INF/spring.factories
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
io.holunda.polyflow.taskpool.collector.CamundaTaskpoolCollectorConfiguration | ||
io.holunda.polyflow.taskpool.sender.SenderConfiguration | ||
io.holunda.polyflow.datapool.DataEntrySenderConfiguration |
3 changes: 0 additions & 3 deletions
3
integration/camunda-bpm/taskpool-collector/src/main/resources/META-INF/spring.factories
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
io.holunda.polyflow.taskpool.collector.FallbackProcessVariablesCorrelatorConfiguration | ||
io.holunda.polyflow.taskpool.collector.FallbackProcessVariablesFilterConfiguration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
integration/camunda-bpm/taskpool-job-sender/src/main/resources/META-INF/spring.factories
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
io.holunda.polyflow.taskpool.sender.CamundaJobSenderConfiguration |
3 changes: 3 additions & 0 deletions
3
...datapool-sender/src/test/kotlin/io/holunda/polyflow/datapool/PropertiesTestApplication.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
package io.holunda.polyflow.datapool | ||
|
||
import io.holunda.polyflow.spring.ApplicationNameBeanPostProcessor | ||
import org.springframework.boot.autoconfigure.SpringBootApplication | ||
import org.springframework.boot.context.properties.EnableConfigurationProperties | ||
import org.springframework.context.annotation.Import | ||
|
||
@SpringBootApplication | ||
@EnableConfigurationProperties(DataEntrySenderProperties::class) | ||
@Import(ApplicationNameBeanPostProcessor::class) | ||
class PropertiesTestApplication |
2 changes: 0 additions & 2 deletions
2
integration/common/tasklist-url-resolver/src/main/resources/META-INF/spring.factories
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
io.holunda.polyflow.urlresolver.FallbackTasklistUrlResolverAutoConfiguration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters