Skip to content

Commit

Permalink
change some dependancies
Browse files Browse the repository at this point in the history
  • Loading branch information
chDame committed Oct 31, 2022
1 parent 2327cc4 commit d905d94
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ You can import it to your maven or gradle project as a dependency
<dependency>
<groupId>io.camunda</groupId>
<artifactId>camunda-operate-client-java</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'io.camunda'
version = '1.3.1'
version = '1.3.2'
sourceCompatibility = '8'

repositories {
Expand All @@ -16,12 +16,12 @@ repositories {
dependencies {
def apolloVersion = "3.2.1"
def httpClientVersion = "5.1.3"
def zeebeClientVersion = "8.0.1"
def zeebeBpmnVersion = "8.1.0"
api "org.apache.httpcomponents.client5:httpclient5:${httpClientVersion}"
api "org.apache.httpcomponents.client5:httpclient5-fluent:${httpClientVersion}"

api 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
implementation "io.camunda:zeebe-client-java:${zeebeClientVersion}"
compileOnlyApi "io.camunda:zeebe-bpmn-model:${zeebeBpmnVersion}"

testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import java.util.List;

import com.google.common.collect.Lists;

public class FlowNodeInstanceQueryList {

private List<FlowNodeInstanceQuery> queries;
Expand All @@ -30,7 +28,7 @@ public FlowNodeInstanceQueryList build() {
flowNodeInstanceQuery.setProcessInstanceId(processInstanceId);
flowNodeInstanceQuery.setTreePath(processInstanceId);
flowNodeInstanceQuery.setPageSize(100);
flowNodeInstanceQueryList.queries=Lists.newArrayList(flowNodeInstanceQuery);
flowNodeInstanceQueryList.queries=List.of(flowNodeInstanceQuery);
return flowNodeInstanceQueryList;
}
}
Expand Down

0 comments on commit d905d94

Please sign in to comment.