forked from AlfrescoArchive/activiti-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·87 lines (78 loc) · 2.88 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
<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>
<name>Activiti Examples</name>
<description>Engine and Services Examples</description>
<groupId>org.activiti</groupId>
<artifactId>activiti-examples-root</artifactId>
<packaging>pom</packaging>
<version>7-201710-EA</version>
<properties>
<jgitflow.plugin.version>1.0-m5.1</jgitflow.plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
</properties>
<modules>
<module>emergency-call-center</module>
<module>loan-request</module>
</modules>
<scm>
<url>https://github.com/Activiti/activiti-examples</url>
<connection>scm:git:https://github.com/Activiti/activiti-examples.git</connection>
<developerConnection>scm:git:https://github.com/Activiti/activiti-examples.git</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>activiti-enterprise-snapshots</id>
<name>Alfresco internal repo</name>
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url>
</repository>
<snapshotRepository>
<id>activiti-enterprise-snapshots</id>
<name>Activiti Snapshots</name>
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>${jgitflow.plugin.version}</version>
<configuration>
<enableFeatureVersions>true</enableFeatureVersions>
<autoVersionSubmodules>true</autoVersionSubmodules>
<allowSnapshots>true</allowSnapshots>
<noDeploy>true</noDeploy>
<useReleaseProfile>true</useReleaseProfile> <!-- Do not generate javadoc when releaseing -->
<pushReleases>true</pushReleases>
<squash>true</squash>
<versionTagPrefix>activiti-</versionTagPrefix>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<!-- Profile to sign artifacts, triggered when releasing -->
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>