Skip to content

Commit a7f48fa

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

File tree

7 files changed

+109
-105
lines changed

7 files changed

+109
-105
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.7.1-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.7.1-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: 63 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,68 @@
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.7.1-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.7.1-SNAPSHOT</version>
9+
</parent>
1110

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>
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>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
@@ -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>
@@ -89,10 +90,8 @@
8990
<artifactId>maven-dependency-plugin</artifactId>
9091
<configuration>
9192
<ignoredUnusedDeclaredDependencies>
92-
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter
93-
</ignoredUnusedDeclaredDependency>
94-
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test
95-
</ignoredUnusedDeclaredDependency>
93+
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter</ignoredUnusedDeclaredDependency>
94+
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test</ignoredUnusedDeclaredDependency>
9695
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-configuration-processor</ignoredUnusedDeclaredDependency>
9796
</ignoredUnusedDeclaredDependencies>
9897
<ignoredUsedUndeclaredDependencies>
@@ -104,4 +103,4 @@
104103
</pluginManagement>
105104
</build>
106105

107-
</project>
106+
</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.7.1-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>
@@ -45,19 +65,14 @@
4565
<plugin.version.maven-source-plugin>3.3.1</plugin.version.maven-source-plugin>
4666
</properties>
4767

48-
<modules>
49-
<module>extension</module>
50-
<module>examples</module>
51-
</modules>
52-
5368
<dependencyManagement>
5469
<dependencies>
5570
<dependency>
5671
<groupId>org.springframework.boot</groupId>
5772
<artifactId>spring-boot-dependencies</artifactId>
5873
<version>${spring-boot.version}</version>
59-
<scope>import</scope>
6074
<type>pom</type>
75+
<scope>import</scope>
6176
</dependency>
6277
<dependency>
6378
<groupId>io.camunda</groupId>
@@ -206,24 +221,21 @@
206221
<artifactId>spotless-maven-plugin</artifactId>
207222
<version>${plugin.version.spotless-maven-plugin}</version>
208223
<configuration>
209-
<formats>
210-
<format>
211-
<includes>
212-
<include>*.md</include>
213-
<include>.gitignore</include>
214-
</includes>
215-
<trimTrailingWhitespace />
216-
<endWithNewline />
217-
<indent>
218-
<spaces>true</spaces>
219-
<spacesPerTab>2</spacesPerTab>
220-
</indent>
221-
</format>
222-
</formats>
223224
<java>
224225
<googleJavaFormat />
225226
</java>
226-
<pom />
227+
<pom>
228+
<sortPom>
229+
<nrOfIndentSpace>2</nrOfIndentSpace>
230+
<expandEmptyElements>false</expandEmptyElements>
231+
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
232+
</sortPom>
233+
</pom>
234+
<markdown>
235+
<includes>
236+
<include>**/*.md</include>
237+
</includes>
238+
</markdown>
227239
</configuration>
228240
</plugin>
229241
<plugin>
@@ -335,17 +347,4 @@
335347
</build>
336348
</profile>
337349
</profiles>
338-
339-
<licenses>
340-
<license>
341-
<name>Apache License</name>
342-
</license>
343-
</licenses>
344-
345-
<scm>
346-
<url>https://github.com/camunda-community-hub/camunda-operate-client-java</url>
347-
<connection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</connection>
348-
<developerConnection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</developerConnection>
349-
<tag>HEAD</tag>
350-
</scm>
351350
</project>

0 commit comments

Comments
 (0)