Skip to content

Commit fe14791

Browse files
[Backport release/8.5] added names to pom (#364)
* BACKPORT-CONFLICT * resolved conflicts --------- Co-authored-by: Jonathan Lukas <[email protected]>
1 parent 8e24add commit fe14791

File tree

8 files changed

+66
-92
lines changed

8 files changed

+66
-92
lines changed

example/bootstrapping-test/pom.xml

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,21 @@
66
<artifactId>tasklist-client-example-parent</artifactId>
77
<version>8.5.15-SNAPSHOT</version>
88
</parent>
9-
109
<artifactId>bootstrapping-test</artifactId>
11-
12-
<dependencies>
13-
<dependency>
14-
<groupId>io.camunda</groupId>
15-
<artifactId>camunda-tasklist-client-java</artifactId>
16-
</dependency>
17-
<dependency>
18-
<groupId>io.camunda</groupId>
19-
<artifactId>zeebe-client-java</artifactId>
20-
</dependency>
21-
<dependency>
22-
<groupId>org.junit.jupiter</groupId>
23-
<artifactId>junit-jupiter-api</artifactId>
24-
<scope>test</scope>
25-
</dependency>
26-
</dependencies>
27-
28-
</project>
10+
<name>Camunda Tasklist Client Bootstrapping Test</name>
11+
<dependencies>
12+
<dependency>
13+
<groupId>io.camunda</groupId>
14+
<artifactId>camunda-tasklist-client-java</artifactId>
15+
</dependency>
16+
<dependency>
17+
<groupId>io.camunda</groupId>
18+
<artifactId>zeebe-client-java</artifactId>
19+
</dependency>
20+
<dependency>
21+
<groupId>org.junit.jupiter</groupId>
22+
<artifactId>junit-jupiter-api</artifactId>
23+
<scope>test</scope>
24+
</dependency>
25+
</dependencies>
26+
</project>

example/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@
66
<artifactId>tasklist-client-root</artifactId>
77
<version>8.5.15-SNAPSHOT</version>
88
</parent>
9-
109
<artifactId>tasklist-client-example-parent</artifactId>
1110
<packaging>pom</packaging>
11+
<name>Camunda Tasklist Client Example Parent</name>
1212
<modules>
1313
<module>bootstrapping-test</module>
1414
<module>readme-snippets</module>
1515
</modules>
16-
17-
18-
</project>
16+
</project>

example/readme-snippets/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
<artifactId>tasklist-client-example-parent</artifactId>
77
<version>8.5.15-SNAPSHOT</version>
88
</parent>
9-
109
<artifactId>readme-snippets</artifactId>
11-
10+
<name>Camunda Tasklist Client Readme Snippets</name>
1211
<dependencies>
1312
<dependency>
1413
<groupId>io.camunda</groupId>
@@ -23,5 +22,4 @@
2322
<artifactId>zeebe-client-java</artifactId>
2423
</dependency>
2524
</dependencies>
26-
27-
</project>
25+
</project>

extension/client-java/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<artifactId>tasklist-client-parent</artifactId>
77
<version>8.5.15-SNAPSHOT</version>
88
</parent>
9-
109
<artifactId>camunda-tasklist-client-java</artifactId>
10+
<name>Camunda Tasklist Client Java</name>
1111
<dependencies>
1212
<dependency>
1313
<groupId>org.slf4j</groupId>
@@ -72,7 +72,5 @@
7272
<artifactId>assertj-core</artifactId>
7373
<scope>test</scope>
7474
</dependency>
75-
7675
</dependencies>
77-
78-
</project>
76+
</project>

extension/generated/pom.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<artifactId>tasklist-client-parent</artifactId>
77
<version>8.5.15-SNAPSHOT</version>
88
</parent>
9-
109
<artifactId>camunda-tasklist-client-generated</artifactId>
10+
<name>Camunda Tasklist Client Generated</name>
1111
<dependencies>
1212
<!-- HTTP client: apache client -->
1313
<dependency>
@@ -19,7 +19,6 @@
1919
<artifactId>httpcore5</artifactId>
2020
<scope>provided</scope>
2121
</dependency>
22-
2322
<!-- JSON processing: jackson -->
2423
<dependency>
2524
<groupId>com.fasterxml.jackson.core</groupId>
@@ -61,8 +60,7 @@
6160
<artifactId>maven-dependency-plugin</artifactId>
6261
<configuration>
6362
<ignoredUnusedDeclaredDependencies>
64-
<ignoredUnusedDeclaredDependency>org.junit.jupiter:junit-jupiter-api
65-
</ignoredUnusedDeclaredDependency>
63+
<ignoredUnusedDeclaredDependency>org.junit.jupiter:junit-jupiter-api</ignoredUnusedDeclaredDependency>
6664
</ignoredUnusedDeclaredDependencies>
6765
</configuration>
6866
</plugin>
@@ -99,5 +97,4 @@
9997
</plugin>
10098
</plugins>
10199
</build>
102-
103-
</project>
100+
</project>

extension/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
</parent>
99
<artifactId>tasklist-client-parent</artifactId>
1010
<packaging>pom</packaging>
11+
<name>Camunda Tasklist Client Parent</name>
1112
<modules>
1213
<module>generated</module>
1314
<module>client-java</module>
1415
<module>spring-boot-starter-camunda-tasklist</module>
1516
</modules>
16-
17-
</project>
17+
</project>

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

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
<artifactId>tasklist-client-parent</artifactId>
77
<version>8.5.15-SNAPSHOT</version>
88
</parent>
9-
109
<artifactId>spring-boot-starter-camunda-tasklist</artifactId>
11-
10+
<name>Spring Boot Starter Camunda Tasklist Client</name>
1211
<dependencies>
1312
<dependency>
1413
<groupId>org.springframework.boot</groupId>
@@ -87,16 +86,13 @@
8786
<artifactId>maven-dependency-plugin</artifactId>
8887
<configuration>
8988
<ignoredUnusedDeclaredDependencies>
90-
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter
91-
</ignoredUnusedDeclaredDependency>
92-
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test
93-
</ignoredUnusedDeclaredDependency>
89+
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter</ignoredUnusedDeclaredDependency>
90+
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test</ignoredUnusedDeclaredDependency>
9491
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-configuration-processor</ignoredUnusedDeclaredDependency>
9592
</ignoredUnusedDeclaredDependencies>
9693
</configuration>
9794
</plugin>
9895
</plugins>
9996
</pluginManagement>
10097
</build>
101-
102-
</project>
98+
</project>

pom.xml

Lines changed: 34 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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>
3-
44
<parent>
55
<groupId>org.camunda.community</groupId>
66
<artifactId>community-hub-release-parent</artifactId>
@@ -10,20 +10,33 @@
1010
<artifactId>tasklist-client-root</artifactId>
1111
<version>8.5.15-SNAPSHOT</version>
1212
<packaging>pom</packaging>
13-
13+
<name>Camunda Tasklist Client Root</name>
14+
<licenses>
15+
<license>
16+
<name>Apache License</name>
17+
</license>
18+
</licenses>
19+
<modules>
20+
<module>extension</module>
21+
<module>example</module>
22+
</modules>
23+
<scm>
24+
<connection>scm:git:[email protected]:camunda-community-hub/camunda-tasklist-client-java.git</connection>
25+
<developerConnection>scm:git:[email protected]:camunda-community-hub/camunda-tasklist-client-java.git</developerConnection>
26+
<tag>HEAD</tag>
27+
<url>https://github.com/camunda-community-hub/camunda-tasklist-client-java</url>
28+
</scm>
1429
<properties>
1530
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1631
<project.build.resourceEncoding>${project.build.sourceEncoding}</project.build.resourceEncoding>
1732
<version.java>17</version.java>
1833
<java.version>${version.java}</java.version>
1934
<maven.compiler.release>${java.version}</maven.compiler.release>
20-
21-
<spring-boot.version>3.3.11</spring-boot.version>
35+
<spring-boot.version>3.5.3</spring-boot.version>
2236
<commons-beanutils.version>1.9.4</commons-beanutils.version>
2337
<resilience4j.version>2.2.0</resilience4j.version>
2438
<jackson.version>2.17.2</jackson.version>
2539
<commons-lang.version>3.15.0</commons-lang.version>
26-
2740
<plugin.version.maven-enforcer-plugin>3.5.0</plugin.version.maven-enforcer-plugin>
2841
<plugin.version.function-maven-plugin>0.11.1</plugin.version.function-maven-plugin>
2942
<plugin.version.maven-install-plugin>3.1.4</plugin.version.maven-install-plugin>
@@ -40,27 +53,21 @@
4053
<plugin.version.frontend-maven-plugin>1.15.1</plugin.version.frontend-maven-plugin>
4154
<plugin.version.maven-source-plugin>3.3.1</plugin.version.maven-source-plugin>
4255
</properties>
43-
44-
<modules>
45-
<module>extension</module>
46-
<module>example</module>
47-
</modules>
48-
4956
<dependencyManagement>
5057
<dependencies>
5158
<dependency>
5259
<groupId>org.springframework.boot</groupId>
5360
<artifactId>spring-boot-dependencies</artifactId>
5461
<version>${spring-boot.version}</version>
55-
<scope>import</scope>
5662
<type>pom</type>
63+
<scope>import</scope>
5764
</dependency>
5865
<dependency>
5966
<groupId>io.camunda</groupId>
6067
<artifactId>zeebe-bom</artifactId>
61-
<version>8.5.7</version>
62-
<scope>import</scope>
68+
<version>8.5.19</version>
6369
<type>pom</type>
70+
<scope>import</scope>
6471
</dependency>
6572
<dependency>
6673
<groupId>io.camunda</groupId>
@@ -131,7 +138,6 @@
131138
</dependency>
132139
</dependencies>
133140
</dependencyManagement>
134-
135141
<build>
136142
<pluginManagement>
137143
<plugins>
@@ -246,24 +252,22 @@
246252
<artifactId>spotless-maven-plugin</artifactId>
247253
<version>${plugin.version.spotless-maven-plugin}</version>
248254
<configuration>
249-
<formats>
250-
<format>
251-
<includes>
252-
<include>*.md</include>
253-
<include>.gitignore</include>
254-
</includes>
255-
<trimTrailingWhitespace />
256-
<endWithNewline />
257-
<indent>
258-
<spaces>true</spaces>
259-
<spacesPerTab>2</spacesPerTab>
260-
</indent>
261-
</format>
262-
</formats>
263255
<java>
264256
<googleJavaFormat />
265257
</java>
266-
<pom />
258+
<pom>
259+
<sortPom>
260+
<nrOfIndentSpace>2</nrOfIndentSpace>
261+
<expandEmptyElements>false</expandEmptyElements>
262+
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
263+
<keepBlankLines>false</keepBlankLines>
264+
</sortPom>
265+
</pom>
266+
<markdown>
267+
<includes>
268+
<include>**/*.md</include>
269+
</includes>
270+
</markdown>
267271
</configuration>
268272
</plugin>
269273
<plugin>
@@ -326,7 +330,6 @@
326330
</plugin>
327331
</plugins>
328332
</build>
329-
330333
<profiles>
331334
<!-- profile to auto format -->
332335
<profile>
@@ -352,7 +355,6 @@
352355
</plugins>
353356
</build>
354357
</profile>
355-
356358
<!-- profile to perform strict validation checks -->
357359
<profile>
358360
<id>checkFormat</id>
@@ -375,17 +377,4 @@
375377
</build>
376378
</profile>
377379
</profiles>
378-
379-
<licenses>
380-
<license>
381-
<name>Apache License</name>
382-
</license>
383-
</licenses>
384-
385-
<scm>
386-
<url>https://github.com/camunda-community-hub/camunda-tasklist-client-java</url>
387-
<connection>scm:git:[email protected]:camunda-community-hub/camunda-tasklist-client-java.git</connection>
388-
<developerConnection>scm:git:[email protected]:camunda-community-hub/camunda-tasklist-client-java.git</developerConnection>
389-
<tag>HEAD</tag>
390-
</scm>
391380
</project>

0 commit comments

Comments
 (0)