-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom.xml
54 lines (53 loc) · 2.26 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
<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.modeshape.quickstarts</groupId>
<artifactId>modeshape-quickstarts</artifactId>
<version>5.4.1.Final</version>
<name>ModeShape Wildfly Quickstarts</name>
<description>Top-Level POM for building all of the quickstarts.</description>
<url>http://www.modeshape.org</url>
<packaging>pom</packaging>
<scm>
<connection>scm:git:git://github.com/ModeShape/quickstart.git</connection>
<developerConnection>scm:git:[email protected]:ModeShape/quickstart.git</developerConnection>
<url>http://github.com/ModeShape/quickstart</url>
</scm>
<modules>
<module>modeshape-servlet</module>
<module>modeshape-ejb</module>
<module>modeshape-cdi</module>
<module>modeshape-cli</module>
<module>modeshape-clustering</module>
<module>modeshape-federation</module>
</modules>
<profiles>
<profile>
<id>dist</id>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>distribution</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<finalName>modeshape-quickstarts-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>