|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
1 | 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"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | | - |
4 | 4 | <parent> |
5 | 5 | <groupId>org.camunda.community</groupId> |
6 | 6 | <artifactId>community-hub-release-parent</artifactId> |
|
10 | 10 | <artifactId>tasklist-client-root</artifactId> |
11 | 11 | <version>8.7.3-SNAPSHOT</version> |
12 | 12 | <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> |
14 | 29 | <properties> |
15 | 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | 31 | <project.build.resourceEncoding>${project.build.sourceEncoding}</project.build.resourceEncoding> |
17 | 32 | <version.java>17</version.java> |
18 | 33 | <java.version>${version.java}</java.version> |
19 | 34 | <maven.compiler.release>${java.version}</maven.compiler.release> |
20 | | - |
21 | | - <spring-boot.version>3.4.5</spring-boot.version> |
| 35 | + <spring-boot.version>3.5.3</spring-boot.version> |
22 | 36 | <commons-beanutils.version>1.9.4</commons-beanutils.version> |
23 | 37 | <resilience4j.version>2.2.0</resilience4j.version> |
24 | 38 | <jackson.version>2.18.3</jackson.version> |
25 | 39 | <commons-lang.version>3.15.0</commons-lang.version> |
26 | | - |
27 | 40 | <plugin.version.maven-enforcer-plugin>3.5.0</plugin.version.maven-enforcer-plugin> |
28 | 41 | <plugin.version.function-maven-plugin>0.11.1</plugin.version.function-maven-plugin> |
29 | 42 | <plugin.version.maven-install-plugin>3.1.4</plugin.version.maven-install-plugin> |
|
40 | 53 | <plugin.version.frontend-maven-plugin>1.15.1</plugin.version.frontend-maven-plugin> |
41 | 54 | <plugin.version.maven-source-plugin>3.3.1</plugin.version.maven-source-plugin> |
42 | 55 | </properties> |
43 | | - |
44 | | - <modules> |
45 | | - <module>extension</module> |
46 | | - <module>example</module> |
47 | | - </modules> |
48 | | - |
49 | 56 | <dependencyManagement> |
50 | 57 | <dependencies> |
51 | 58 | <dependency> |
52 | 59 | <groupId>org.springframework.boot</groupId> |
53 | 60 | <artifactId>spring-boot-dependencies</artifactId> |
54 | 61 | <version>${spring-boot.version}</version> |
55 | | - <scope>import</scope> |
56 | 62 | <type>pom</type> |
| 63 | + <scope>import</scope> |
57 | 64 | </dependency> |
58 | 65 | <dependency> |
59 | 66 | <groupId>io.camunda</groupId> |
60 | 67 | <artifactId>zeebe-bom</artifactId> |
61 | 68 | <version>8.7.6</version> |
62 | | - <scope>import</scope> |
63 | 69 | <type>pom</type> |
| 70 | + <scope>import</scope> |
64 | 71 | </dependency> |
65 | 72 | <dependency> |
66 | 73 | <groupId>io.camunda</groupId> |
|
131 | 138 | </dependency> |
132 | 139 | </dependencies> |
133 | 140 | </dependencyManagement> |
134 | | - |
135 | 141 | <build> |
136 | 142 | <pluginManagement> |
137 | 143 | <plugins> |
|
246 | 252 | <artifactId>spotless-maven-plugin</artifactId> |
247 | 253 | <version>${plugin.version.spotless-maven-plugin}</version> |
248 | 254 | <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> |
263 | 255 | <java> |
264 | 256 | <googleJavaFormat /> |
265 | 257 | </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> |
267 | 271 | </configuration> |
268 | 272 | </plugin> |
269 | 273 | <plugin> |
|
326 | 330 | </plugin> |
327 | 331 | </plugins> |
328 | 332 | </build> |
329 | | - |
330 | 333 | <profiles> |
331 | 334 | <!-- profile to auto format --> |
332 | 335 | <profile> |
|
352 | 355 | </plugins> |
353 | 356 | </build> |
354 | 357 | </profile> |
355 | | - |
356 | 358 | <!-- profile to perform strict validation checks --> |
357 | 359 | <profile> |
358 | 360 | <id>checkFormat</id> |
|
375 | 377 | </build> |
376 | 378 | </profile> |
377 | 379 | </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> |
391 | 380 | </project> |
0 commit comments