This repository has been archived by the owner on Mar 25, 2022. It is now read-only.
forked from camunda/camunda-bpm-platform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
96 lines (84 loc) · 2.83 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
<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>org.camunda</groupId>
<artifactId>camunda-bpm-release-parent</artifactId>
<version>0.2</version>
<!-- do not remove empty tag - http://jira.codehaus.org/browse/MNG-4687 -->
<relativePath />
</parent>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-root</artifactId>
<version>7.12.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>camunda BPM - Root Pom</name>
<inceptionYear>2013</inceptionYear>
<description>
This pom defines the modules that make up the build.
The parent pom for all camunda BPM projects can be found in the parent directory relative to this file.
</description>
<properties>
<license.includeTransitiveDependencies>false</license.includeTransitiveDependencies>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.14</version>
<configuration>
<acceptPomPackaging>true</acceptPomPackaging>
<excludedScopes>test</excludedScopes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>distro-tomcat</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>webapps/h2-webapp</module>
<module>engine</module>
<module>engine-cdi</module>
<module>engine-rest</module>
<module>distro/license-book</module>
<module>distro/tomcat</module>
<module>database</module>
<module>parent</module>
<module>bom</module>
</modules>
</profile>
</profiles>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>camunda services GmbH</name>
<url>http://www.camunda.com</url>
</organization>
<url>http://www.camunda.org</url>
<developers>
<developer>
<id>camunda.org</id>
<name>camunda BPM Community</name>
<organization>camunda.org</organization>
<organizationUrl>http://camunda.org</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/camunda/camunda-bpm-platform</url>
<connection>scm:git:[email protected]:camunda/camunda-bpm-platform.git</connection>
<developerConnection>scm:git:[email protected]:camunda/camunda-bpm-platform.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Jira</system>
<url>https://app.camunda.com/jira/browse/CAM/</url>
</issueManagement>
</project>