Skip to content

Commit 53684f5

Browse files
fix(deps): update version.connectors to v8.8.1 (#166)
* fix(deps): update version.connectors * chore(package): Add runtime test package and adjust paths --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: ztefanie <stefanie.metzger@camunda.com>
1 parent 990f182 commit 53684f5

File tree

4 files changed

+35
-3
lines changed

4 files changed

+35
-3
lines changed

element-templates/template-connector.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
}, {
2323
"id" : "compose",
2424
"label" : "Compose"
25+
}, {
26+
"id" : "connector",
27+
"label" : "Connector"
2528
}, {
2629
"id" : "output",
2730
"label" : "Output mapping"
@@ -83,6 +86,28 @@
8386
"type" : "zeebe:input"
8487
},
8588
"type" : "Text"
89+
}, {
90+
"id" : "version",
91+
"label" : "Version",
92+
"description" : "Version of the element template",
93+
"value" : "1",
94+
"group" : "connector",
95+
"binding" : {
96+
"key" : "elementTemplateVersion",
97+
"type" : "zeebe:taskHeader"
98+
},
99+
"type" : "Hidden"
100+
}, {
101+
"id" : "id",
102+
"label" : "ID",
103+
"description" : "ID of the element template",
104+
"value" : "io.camunda.connector.Template.v1",
105+
"group" : "connector",
106+
"binding" : {
107+
"key" : "elementTemplateId",
108+
"type" : "zeebe:taskHeader"
109+
},
110+
"type" : "Hidden"
86111
}, {
87112
"id" : "resultVariable",
88113
"label" : "Result variable",

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<maven.compiler.release>21</maven.compiler.release>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
17-
<version.connectors>8.7.8</version.connectors>
17+
<version.connectors>8.8.1</version.connectors>
1818
<version.assertj>3.27.4</version.assertj>
1919
<version.junit-jupiter>5.13.4</version.junit-jupiter>
2020
<version.mockito>5.19.0</version.mockito>
@@ -46,6 +46,13 @@
4646
<scope>test</scope>
4747
</dependency>
4848

49+
<dependency>
50+
<groupId>io.camunda.connector</groupId>
51+
<artifactId>connector-runtime-test</artifactId>
52+
<version>${version.connectors}</version>
53+
<scope>test</scope>
54+
</dependency>
55+
4956
<dependency>
5057
<groupId>org.junit.jupiter</groupId>
5158
<artifactId>junit-jupiter</artifactId>

src/test/java/io/camunda/example/MyFunctionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import com.fasterxml.jackson.databind.ObjectMapper;
77
import io.camunda.connector.api.error.ConnectorException;
8-
import io.camunda.connector.test.outbound.OutboundConnectorContextBuilder;
8+
import io.camunda.connector.runtime.test.outbound.OutboundConnectorContextBuilder;
99
import io.camunda.example.dto.Authentication;
1010
import io.camunda.example.dto.MyConnectorRequest;
1111
import io.camunda.example.dto.MyConnectorResult;

src/test/java/io/camunda/example/MyRequestTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import com.fasterxml.jackson.core.JsonProcessingException;
77
import com.fasterxml.jackson.databind.ObjectMapper;
88
import io.camunda.connector.api.error.ConnectorInputException;
9-
import io.camunda.connector.test.outbound.OutboundConnectorContextBuilder;
9+
import io.camunda.connector.runtime.test.outbound.OutboundConnectorContextBuilder;
1010
import io.camunda.example.dto.Authentication;
1111
import io.camunda.example.dto.MyConnectorRequest;
1212
import org.junit.jupiter.api.Test;

0 commit comments

Comments
 (0)