forked from camunda/camunda-archetypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
127 lines (115 loc) · 4.2 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?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>org.camunda</groupId>
<artifactId>camunda-release-parent</artifactId>
<version>2.5</version>
<relativePath />
</parent>
<groupId>org.camunda.bpm.archetype</groupId>
<artifactId>camunda-archetype-root</artifactId>
<version>7.9.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>camunda Archetypes Parent POM</name>
<modules>
<module>camunda-archetype-ejb-war</module>
<module>camunda-archetype-servlet-war</module>
<module>camunda-archetype-cockpit-plugin</module>
<module>camunda-archetype-engine-plugin</module>
<module>camunda-archetype-demo</module>
<module>camunda-archetype-spring-boot</module>
</modules>
<properties>
<version.camunda>7.9.0</version.camunda>
<version.arquillian>1.4.0.Final</version.arquillian>
<version.jboss>7.2.0.Final</version.jboss>
<version.tomcat>9.0.5</version.tomcat>
<version.tomcat>8.0.47</version.tomcat>
<version.camunda-test-coverage>0.3.2</version.camunda-test-coverage>
<version.camundaSpringBoot>3.0.0</version.camundaSpringBoot>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<url>http://www.camunda.org</url>
<organization>
<name>camunda services GmbH</name>
<url>http://www.camunda.com</url>
</organization>
<developers>
<developer>
<name>Falko Menge</name>
<organization>camunda services GmbH</organization>
<url>http://www.camunda.com</url>
</developer>
<developer>
<name>Bernd Rücker</name>
<organization>camunda services GmbH</organization>
<url>http://www.camunda.com</url>
</developer>
</developers>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration>
<escapeString>\</escapeString>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${plugin.version.nexus-staging}</version>
<executions>
<execution>
<id>central-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<serverId>central</serverId>
<nexusUrl>https://oss.sonatype.org</nexusUrl>
<skipNexusStagingDeployMojo>${skip.central.release}</skipNexusStagingDeployMojo>
<keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<scm>
<connection>scm:git:ssh://[email protected]/camunda/camunda-archetypes.git</connection>
<developerConnection>scm:git:ssh://[email protected]/camunda/camunda-archetypes.git</developerConnection>
<url>https://github.com/camunda/camunda-archetypes</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Jira</system>
<url>https://app.camunda.com/jira/browse/CAM/</url>
</issueManagement>
<distributionManagement>
<repository>
<id>camunda-nexus</id>
<name>camunda BPM Maven Repository</name>
<url>https://app.camunda.com/nexus/content/repositories/camunda-bpm</url>
</repository>
<snapshotRepository>
<id>camunda-nexus</id>
<name>camunda BPM Maven Snapshot Repository</name>
<url>https://app.camunda.com/nexus/content/repositories/camunda-bpm-snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>