forked from camunda/camunda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
100 lines (92 loc) · 3.38 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.camunda</groupId>
<artifactId>zeebe-parent</artifactId>
<version>8.5.0-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
<artifactId>zeebe-root</artifactId>
<packaging>pom</packaging>
<name>Zeebe Root</name>
<modules>
<module>bom</module>
<module>parent</module>
<module>atomix</module>
<module>auth</module>
<module>broker</module>
<module>broker-client</module>
<module>protocol-test-util</module>
<module>dist</module>
<module>protocol</module>
<module>bpmn-model</module>
<module>logstreams</module>
<module>stream-platform</module>
<module>engine</module>
<module>transport</module>
<module>util</module>
<module>test-util</module>
<module>msgpack-core</module>
<module>msgpack-value</module>
<module>build-tools</module>
<module>gateway-protocol</module>
<module>gateway-protocol-impl</module>
<module>gateway</module>
<module>gateway-rest</module>
<module>clients/java</module>
<module>exporter-api</module>
<module>exporter-test</module>
<module>protocol-asserts</module>
<module>exporters/elasticsearch-exporter</module>
<module>exporters/opensearch-exporter</module>
<module>protocol-impl</module>
<module>protocol-jackson</module>
<module>zb-db</module>
<module>expression-language</module>
<module>feel</module>
<module>dmn</module>
<module>snapshot</module>
<module>journal</module>
<module>qa</module>
<module>benchmarks/project</module>
<module>scheduler</module>
<module>backup</module>
<module>backup-stores/testkit</module>
<module>backup-stores/s3</module>
<module>backup-stores/gcs</module>
<module>backup-stores/azure</module>
<module>restore</module>
<module>topology</module>
</modules>
<scm>
<connection>scm:git:https://${env.GITHUB_TOKEN_USR}:${env.GITHUB_TOKEN_PSW}@github.com/camunda/zeebe.git</connection>
<developerConnection>scm:git:https://${env.GITHUB_TOKEN_USR}:${env.GITHUB_TOKEN_PSW}@github.com/camunda/zeebe.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/camunda/zeebe</url>
</scm>
<build>
<plugins>
<!-- While other files are generally placed in a special directory, markdown files are not.
To make sure all markdown files are formatted, we need to rely on the **/*.md pattern.
This pattern will match all *.md files in all subdirectories (also in all submodules).
So, we need to define it in the root-pom only to avoid formatting the files more than once.-->
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<configuration>
<markdown>
<includes>
<include>**/*.md</include>
</includes>
<excludes>
<exclude>**/target/**/*.md</exclude>
<exclude>clients/go/vendor/**/*.md</exclude>
</excludes>
<flexmark></flexmark>
</markdown>
</configuration>
</plugin>
</plugins>
</build>
</project>