Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump zeebe-bom from 1.4.0-alpha1 to 1.4.0-alpha2 #225

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public class ZeebeProcessTestExtension
@Override
public void beforeEach(final ExtensionContext extensionContext) {
final InMemoryEngine engine = EngineFactory.create();
engine.start();
final ZeebeClient client = engine.createClient();
final RecordStream recordStream = RecordStream.of(engine.getRecordStreamSource());

Expand All @@ -42,8 +43,6 @@ public void beforeEach(final ExtensionContext extensionContext) {
BpmnAssert.initRecordStream(recordStream);
getStore(extensionContext).put(KEY_ZEEBE_CLIENT, client);
getStore(extensionContext).put(KEY_ZEEBE_ENGINE, engine);

engine.start();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public RecordStreamLogger(final RecordStreamSource recordStreamSource) {
// DMN will not be part of the initial 1.4 release
valueTypeLoggers.put(ValueType.DECISION, record -> "");
valueTypeLoggers.put(ValueType.DECISION_REQUIREMENTS, record -> "");
valueTypeLoggers.put(ValueType.DECISION_EVALUATION, record -> "");
}

public void log() {
Expand Down
38 changes: 33 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@

<name>Zeebe Process Test Root</name>

<description>
This pom should be the parent of all specified modules. It defines all versions and provides
plugins that are required for the child modules.
</description>
<description>This pom should be the parent of all specified modules. It defines all versions and provides
plugins that are required for the child modules.</description>

<modules>
<module>api</module>
Expand Down Expand Up @@ -63,7 +61,7 @@
<dependency.snakeyaml.version>1.30</dependency.snakeyaml.version>
<dependency.spring.version>5.3.16</dependency.spring.version>
<dependency.testcontainers.version>1.16.3</dependency.testcontainers.version>
<dependency.zeebe.version>1.4.0-alpha1</dependency.zeebe.version>
<dependency.zeebe.version>1.4.0-alpha2</dependency.zeebe.version>

<nexus.release.repository>https://app.camunda.com/nexus/content/repositories/zeebe-io</nexus.release.repository>
<nexus.release.repository.id>camunda-nexus</nexus.release.repository.id>
Expand Down Expand Up @@ -151,6 +149,36 @@
<scope>import</scope>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-workflow-engine</artifactId>
<version>${dependency.zeebe.version}</version>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-util</artifactId>
<version>${dependency.zeebe.version}</version>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-logstreams</artifactId>
<version>${dependency.zeebe.version}</version>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-test-util</artifactId>
<version>${dependency.zeebe.version}</version>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-protocol-jackson</artifactId>
<version>${dependency.zeebe.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
Expand Down