|
| 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 |
|
|
8 | 9 | </parent> |
9 | 10 | <groupId>io.camunda.spring</groupId> |
10 | 11 | <artifactId>operate-client-root</artifactId> |
11 | | - <name>Camunda Operate Client Root</name> |
12 | 12 | <version>8.8.0-SNAPSHOT</version> |
13 | 13 | <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> |
14 | 33 |
|
15 | 34 | <properties> |
16 | 35 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
46 | 65 | <plugin.version.maven-source-plugin>3.3.1</plugin.version.maven-source-plugin> |
47 | 66 | </properties> |
48 | 67 |
|
49 | | - <modules> |
50 | | - <module>extension</module> |
51 | | - <module>examples</module> |
52 | | - </modules> |
53 | | - |
54 | 68 | <dependencyManagement> |
55 | 69 | <dependencies> |
56 | 70 | <dependency> |
57 | 71 | <groupId>org.springframework.boot</groupId> |
58 | 72 | <artifactId>spring-boot-dependencies</artifactId> |
59 | 73 | <version>${spring-boot.version}</version> |
60 | | - <scope>import</scope> |
61 | 74 | <type>pom</type> |
| 75 | + <scope>import</scope> |
62 | 76 | </dependency> |
63 | 77 | <dependency> |
64 | 78 | <groupId>io.camunda</groupId> |
|
207 | 221 | <artifactId>spotless-maven-plugin</artifactId> |
208 | 222 | <version>${plugin.version.spotless-maven-plugin}</version> |
209 | 223 | <configuration> |
210 | | - <formats> |
211 | | - <format> |
212 | | - <includes> |
213 | | - <include>*.md</include> |
214 | | - <include>.gitignore</include> |
215 | | - </includes> |
216 | | - <trimTrailingWhitespace /> |
217 | | - <endWithNewline /> |
218 | | - <indent> |
219 | | - <spaces>true</spaces> |
220 | | - <spacesPerTab>2</spacesPerTab> |
221 | | - </indent> |
222 | | - </format> |
223 | | - </formats> |
224 | 224 | <java> |
225 | 225 | <googleJavaFormat /> |
226 | 226 | </java> |
227 | | - <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> |
228 | 239 | </configuration> |
229 | 240 | </plugin> |
230 | 241 | <plugin> |
|
336 | 347 | </build> |
337 | 348 | </profile> |
338 | 349 | </profiles> |
339 | | - |
340 | | - <licenses> |
341 | | - <license> |
342 | | - <name>Apache License</name> |
343 | | - </license> |
344 | | - </licenses> |
345 | | - |
346 | | - <scm> |
347 | | - <url>https://github.com/camunda-community-hub/camunda-operate-client-java</url> |
348 | | - < connection>scm:git: [email protected]:camunda-community-hub/camunda-operate-client-java.git</ connection> |
349 | | - < developerConnection>scm:git: [email protected]:camunda-community-hub/camunda-operate-client-java.git</ developerConnection> |
350 | | - <tag>HEAD</tag> |
351 | | - </scm> |
352 | 350 | </project> |
0 commit comments