|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - <parent> |
5 | | - <groupId>io.camunda.spring</groupId> |
6 | | - <artifactId>operate-client-parent</artifactId> |
7 | | - <version>8.8.0-SNAPSHOT</version> |
8 | | - </parent> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <parent> |
| 5 | + <groupId>io.camunda.spring</groupId> |
| 6 | + <artifactId>operate-client-parent</artifactId> |
| 7 | + <version>8.8.0-SNAPSHOT</version> |
| 8 | + </parent> |
9 | 9 |
|
10 | | - <artifactId>java-client-operate</artifactId> |
| 10 | + <artifactId>java-client-operate</artifactId> |
| 11 | + <name>Camunda Operate Client</name> |
11 | 12 |
|
12 | | - <dependencies> |
13 | | - <dependency> |
14 | | - <groupId>org.slf4j</groupId> |
15 | | - <artifactId>slf4j-api</artifactId> |
16 | | - </dependency> |
17 | | - <dependency> |
18 | | - <groupId>io.camunda</groupId> |
19 | | - <artifactId>zeebe-bpmn-model</artifactId> |
20 | | - </dependency> |
21 | | - <dependency> |
22 | | - <groupId>org.apache.httpcomponents.client5</groupId> |
23 | | - <artifactId>httpclient5</artifactId> |
24 | | - </dependency> |
25 | | - <dependency> |
26 | | - <groupId>org.apache.httpcomponents.core5</groupId> |
27 | | - <artifactId>httpcore5</artifactId> |
28 | | - </dependency> |
29 | | - <dependency> |
30 | | - <groupId>com.fasterxml.jackson.core</groupId> |
31 | | - <artifactId>jackson-databind</artifactId> |
32 | | - </dependency> |
33 | | - <dependency> |
34 | | - <groupId>com.fasterxml.jackson.core</groupId> |
35 | | - <artifactId>jackson-core</artifactId> |
36 | | - </dependency> |
37 | | - <dependency> |
38 | | - <groupId>com.fasterxml.jackson.core</groupId> |
39 | | - <artifactId>jackson-annotations</artifactId> |
40 | | - </dependency> |
41 | | - <dependency> |
42 | | - <groupId>io.jsonwebtoken</groupId> |
43 | | - <artifactId>jjwt-api</artifactId> |
44 | | - </dependency> |
45 | | - <dependency> |
46 | | - <groupId>org.junit.jupiter</groupId> |
47 | | - <artifactId>junit-jupiter-api</artifactId> |
48 | | - <scope>test</scope> |
49 | | - </dependency> |
50 | | - <dependency> |
51 | | - <groupId>org.assertj</groupId> |
52 | | - <artifactId>assertj-core</artifactId> |
53 | | - <scope>test</scope> |
54 | | - </dependency> |
55 | | - <dependency> |
56 | | - <groupId>org.mockito</groupId> |
57 | | - <artifactId>mockito-core</artifactId> |
58 | | - <scope>test</scope> |
59 | | - </dependency> |
60 | | - <dependency> |
61 | | - <groupId>org.mockito</groupId> |
62 | | - <artifactId>mockito-junit-jupiter</artifactId> |
63 | | - <scope>test</scope> |
64 | | - </dependency> |
65 | | - </dependencies> |
| 13 | + <dependencies> |
| 14 | + <dependency> |
| 15 | + <groupId>org.slf4j</groupId> |
| 16 | + <artifactId>slf4j-api</artifactId> |
| 17 | + </dependency> |
| 18 | + <dependency> |
| 19 | + <groupId>io.camunda</groupId> |
| 20 | + <artifactId>zeebe-bpmn-model</artifactId> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>org.apache.httpcomponents.client5</groupId> |
| 24 | + <artifactId>httpclient5</artifactId> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>org.apache.httpcomponents.core5</groupId> |
| 28 | + <artifactId>httpcore5</artifactId> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 32 | + <artifactId>jackson-databind</artifactId> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 36 | + <artifactId>jackson-core</artifactId> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 40 | + <artifactId>jackson-annotations</artifactId> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>io.jsonwebtoken</groupId> |
| 44 | + <artifactId>jjwt-api</artifactId> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.junit.jupiter</groupId> |
| 48 | + <artifactId>junit-jupiter-api</artifactId> |
| 49 | + <scope>test</scope> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.assertj</groupId> |
| 53 | + <artifactId>assertj-core</artifactId> |
| 54 | + <scope>test</scope> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.mockito</groupId> |
| 58 | + <artifactId>mockito-core</artifactId> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.mockito</groupId> |
| 63 | + <artifactId>mockito-junit-jupiter</artifactId> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + </dependencies> |
66 | 67 | </project> |
0 commit comments