Skip to content

Commit d693c7b

Browse files
[Backport release/8.6] named all modules (#262)
* BACKPORT-CONFLICT * adjusted to 8.6 --------- Co-authored-by: Jonathan Lukas <[email protected]>
1 parent fc332b2 commit d693c7b

File tree

7 files changed

+106
-101
lines changed

7 files changed

+106
-101
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
<version>8.6.6-SNAPSHOT</version>
88
</parent>
99

10-
<artifactId>operate-example-load-process-instance</artifactId>
10+
<artifactId>operate-client-example-load-process-instance</artifactId>
11+
<name>Camunda Operate Client Example: Load process instance</name>
1112

1213
<dependencies>
1314
<dependency>
@@ -76,4 +77,4 @@
7677
</pluginManagement>
7778
</build>
7879

79-
</project>
80+
</project>

examples/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99

1010
<artifactId>operate-examples-parent</artifactId>
1111
<packaging>pom</packaging>
12+
<name>Camunda Operate Client Examples Parent</name>
1213
<modules>
1314
<module>operate-example-load-process-instance</module>
1415
<module>readme-snippets</module>
1516
</modules>
1617

17-
</project>
18+
</project>

examples/readme-snippets/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
<version>8.6.6-SNAPSHOT</version>
88
</parent>
99

10-
<artifactId>readme-snippets</artifactId>
10+
<artifactId>operate-client-readme-snippets</artifactId>
11+
<name>Camunda Operate Client Readme Snippets</name>
1112

1213
<dependencies>
1314
<dependency>
@@ -34,4 +35,4 @@
3435
</dependency>
3536
</dependencies>
3637

37-
</project>
38+
</project>
Lines changed: 60 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,65 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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.6.6-SNAPSHOT</version>
8-
</parent>
93

10-
<artifactId>java-client-operate</artifactId>
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>io.camunda.spring</groupId>
7+
<artifactId>operate-client-parent</artifactId>
8+
<version>8.6.6-SNAPSHOT</version>
9+
</parent>
10+
11+
<artifactId>java-client-operate</artifactId>
12+
<name>Camunda Operate Client</name>
13+
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>org.junit.jupiter</groupId>
45+
<artifactId>junit-jupiter-api</artifactId>
46+
<scope>test</scope>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.assertj</groupId>
50+
<artifactId>assertj-core</artifactId>
51+
<scope>test</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.mockito</groupId>
55+
<artifactId>mockito-core</artifactId>
56+
<scope>test</scope>
57+
</dependency>
58+
<dependency>
59+
<groupId>org.mockito</groupId>
60+
<artifactId>mockito-junit-jupiter</artifactId>
61+
<scope>test</scope>
62+
</dependency>
63+
</dependencies>
1164

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>org.junit.jupiter</groupId>
43-
<artifactId>junit-jupiter-api</artifactId>
44-
<scope>test</scope>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.assertj</groupId>
48-
<artifactId>assertj-core</artifactId>
49-
<scope>test</scope>
50-
</dependency>
51-
<dependency>
52-
<groupId>org.mockito</groupId>
53-
<artifactId>mockito-core</artifactId>
54-
<scope>test</scope>
55-
</dependency>
56-
<dependency>
57-
<groupId>org.mockito</groupId>
58-
<artifactId>mockito-junit-jupiter</artifactId>
59-
<scope>test</scope>
60-
</dependency>
61-
</dependencies>
6265
</project>

extension/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

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

1314
<modules>
1415
<module>java-client-operate</module>

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</parent>
99

1010
<artifactId>spring-boot-starter-camunda-operate</artifactId>
11+
<name>Spring Boot Starter Camunda Operate Client</name>
1112

1213
<dependencies>
1314
<dependency>
@@ -84,10 +85,8 @@
8485
<artifactId>maven-dependency-plugin</artifactId>
8586
<configuration>
8687
<ignoredUnusedDeclaredDependencies>
87-
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter
88-
</ignoredUnusedDeclaredDependency>
89-
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test
90-
</ignoredUnusedDeclaredDependency>
88+
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter</ignoredUnusedDeclaredDependency>
89+
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test</ignoredUnusedDeclaredDependency>
9190
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-configuration-processor</ignoredUnusedDeclaredDependency>
9291
</ignoredUnusedDeclaredDependencies>
9392
</configuration>
@@ -96,4 +95,4 @@
9695
</pluginManagement>
9796
</build>
9897

99-
</project>
98+
</project>

pom.xml

Lines changed: 33 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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">
23
<modelVersion>4.0.0</modelVersion>
34

@@ -10,6 +11,25 @@
1011
<artifactId>operate-client-root</artifactId>
1112
<version>8.6.6-SNAPSHOT</version>
1213
<packaging>pom</packaging>
14+
<name>Camunda Operate Client Root</name>
15+
16+
<licenses>
17+
<license>
18+
<name>Apache License</name>
19+
</license>
20+
</licenses>
21+
22+
<modules>
23+
<module>extension</module>
24+
<module>examples</module>
25+
</modules>
26+
27+
<scm>
28+
<connection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</connection>
29+
<developerConnection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</developerConnection>
30+
<tag>HEAD</tag>
31+
<url>https://github.com/camunda-community-hub/camunda-operate-client-java</url>
32+
</scm>
1333

1434
<properties>
1535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -43,19 +63,14 @@
4363
<plugin.version.maven-source-plugin>3.3.1</plugin.version.maven-source-plugin>
4464
</properties>
4565

46-
<modules>
47-
<module>extension</module>
48-
<module>examples</module>
49-
</modules>
50-
5166
<dependencyManagement>
5267
<dependencies>
5368
<dependency>
5469
<groupId>org.springframework.boot</groupId>
5570
<artifactId>spring-boot-dependencies</artifactId>
5671
<version>${spring-boot.version}</version>
57-
<scope>import</scope>
5872
<type>pom</type>
73+
<scope>import</scope>
5974
</dependency>
6075
<dependency>
6176
<groupId>io.camunda</groupId>
@@ -199,24 +214,21 @@
199214
<artifactId>spotless-maven-plugin</artifactId>
200215
<version>${plugin.version.spotless-maven-plugin}</version>
201216
<configuration>
202-
<formats>
203-
<format>
204-
<includes>
205-
<include>*.md</include>
206-
<include>.gitignore</include>
207-
</includes>
208-
<trimTrailingWhitespace />
209-
<endWithNewline />
210-
<indent>
211-
<spaces>true</spaces>
212-
<spacesPerTab>2</spacesPerTab>
213-
</indent>
214-
</format>
215-
</formats>
216217
<java>
217218
<googleJavaFormat />
218219
</java>
219-
<pom />
220+
<pom>
221+
<sortPom>
222+
<nrOfIndentSpace>2</nrOfIndentSpace>
223+
<expandEmptyElements>false</expandEmptyElements>
224+
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
225+
</sortPom>
226+
</pom>
227+
<markdown>
228+
<includes>
229+
<include>**/*.md</include>
230+
</includes>
231+
</markdown>
220232
</configuration>
221233
</plugin>
222234
<plugin>
@@ -328,17 +340,4 @@
328340
</build>
329341
</profile>
330342
</profiles>
331-
332-
<licenses>
333-
<license>
334-
<name>Apache License</name>
335-
</license>
336-
</licenses>
337-
338-
<scm>
339-
<url>https://github.com/camunda-community-hub/camunda-operate-client-java</url>
340-
<connection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</connection>
341-
<developerConnection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</developerConnection>
342-
<tag>HEAD</tag>
343-
</scm>
344343
</project>

0 commit comments

Comments
 (0)