Skip to content

Commit 936bc58

Browse files
committed
named all modules
1 parent 750d891 commit 936bc58

File tree

7 files changed

+76
-68
lines changed

7 files changed

+76
-68
lines changed

examples/operate-example-load-process-instance/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<version>8.8.0-SNAPSHOT</version>
1010
</parent>
1111

12-
<artifactId>operate-example-load-process-instance</artifactId>
12+
<artifactId>operate-client-example-load-process-instance</artifactId>
13+
<name>Camunda Operate Client Example: Load process instance</name>
1314

1415
<dependencies>
1516
<dependency>
@@ -78,4 +79,4 @@
7879
</pluginManagement>
7980
</build>
8081

81-
</project>
82+
</project>

examples/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
</parent>
1111

1212
<artifactId>operate-examples-parent</artifactId>
13+
<name>Camunda Operate Client Examples Parent</name>
1314
<packaging>pom</packaging>
1415
<modules>
1516
<module>operate-example-load-process-instance</module>
1617
<module>readme-snippets</module>
1718
</modules>
1819

19-
</project>
20+
</project>

examples/readme-snippets/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<version>8.8.0-SNAPSHOT</version>
1010
</parent>
1111

12-
<artifactId>readme-snippets</artifactId>
12+
<artifactId>operate-client-readme-snippets</artifactId>
13+
<name>Camunda Operate Client Readme Snippets</name>
1314

1415
<dependencies>
1516
<dependency>
@@ -36,4 +37,4 @@
3637
</dependency>
3738
</dependencies>
3839

39-
</project>
40+
</project>
Lines changed: 64 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,68 @@
11
<?xml version="1.0" encoding="UTF-8"?>
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>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>io.camunda.spring</groupId>
7+
<artifactId>operate-client-parent</artifactId>
8+
<version>8.8.0-SNAPSHOT</version>
9+
</parent>
910

10-
<artifactId>java-client-operate</artifactId>
11+
<artifactId>java-client-operate</artifactId>
12+
<name>Camunda Operate Client</name>
1113

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>
14+
<dependencies>
15+
<dependency>
16+
<groupId>org.slf4j</groupId>
17+
<artifactId>slf4j-api</artifactId>
18+
</dependency>
19+
<dependency>
20+
<groupId>io.camunda</groupId>
21+
<artifactId>zeebe-bpmn-model</artifactId>
22+
</dependency>
23+
<dependency>
24+
<groupId>org.apache.httpcomponents.client5</groupId>
25+
<artifactId>httpclient5</artifactId>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.apache.httpcomponents.core5</groupId>
29+
<artifactId>httpcore5</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.fasterxml.jackson.core</groupId>
33+
<artifactId>jackson-databind</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.fasterxml.jackson.core</groupId>
37+
<artifactId>jackson-core</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.fasterxml.jackson.core</groupId>
41+
<artifactId>jackson-annotations</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>io.jsonwebtoken</groupId>
45+
<artifactId>jjwt-api</artifactId>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.junit.jupiter</groupId>
49+
<artifactId>junit-jupiter-api</artifactId>
50+
<scope>test</scope>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.assertj</groupId>
54+
<artifactId>assertj-core</artifactId>
55+
<scope>test</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.mockito</groupId>
59+
<artifactId>mockito-core</artifactId>
60+
<scope>test</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.mockito</groupId>
64+
<artifactId>mockito-junit-jupiter</artifactId>
65+
<scope>test</scope>
66+
</dependency>
67+
</dependencies>
6668
</project>

extension/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</parent>
99

1010
<artifactId>operate-client-parent</artifactId>
11+
<name>Camunda Operate Client Parent</name>
1112
<packaging>pom</packaging>
1213

1314
<modules>

extension/spring-boot-starter-camunda-operate/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</parent>
1111

1212
<artifactId>spring-boot-starter-camunda-operate</artifactId>
13+
<name>Spring Boot Starter Camunda Operate Client</name>
1314

1415
<dependencies>
1516
<dependency>
@@ -106,4 +107,4 @@
106107
</pluginManagement>
107108
</build>
108109

109-
</project>
110+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</parent>
99
<groupId>io.camunda.spring</groupId>
1010
<artifactId>operate-client-root</artifactId>
11+
<name>Camunda Operate Client Root</name>
1112
<version>8.8.0-SNAPSHOT</version>
1213
<packaging>pom</packaging>
1314

0 commit comments

Comments
 (0)