source: vlo/trunk/vlo-distribution/pom.xml @ 5991

Last change on this file since 5991 was 5991, checked in by Twan Goosen, 9 years ago

bumped VLO trunk to 3.2-SNAPSHOT

File size: 1.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
6    <parent>
7        <groupId>eu.clarin.cmdi</groupId>
8        <artifactId>vlo</artifactId>
9        <version>3.2-SNAPSHOT</version>
10    </parent>
11   
12    <modelVersion>4.0.0</modelVersion>
13    <groupId>eu.clarin.cmdi</groupId>
14    <artifactId>vlo-distribution</artifactId>
15    <packaging>pom</packaging>
16    <version>3.2-SNAPSHOT</version>
17    <name>VLO Distribution</name>
18    <description>
19        Creates a package for server distribution of the VLO. It includes WAR
20        files for the Solr and web app servlets, as well as the binaries and
21        scripts to run the importer.
22    </description>
23   
24    <build>
25        <plugins>
26            <plugin>
27                <artifactId>maven-assembly-plugin</artifactId>
28                <version>2.3</version>
29                <configuration>
30                    <finalName>${project.parent.artifactId}-${project.parent.version}</finalName>
31                    <descriptors>
32                        <descriptor>src/main/assembly/installPackageBuilder.xml</descriptor>
33                    </descriptors>
34                </configuration>
35                <executions>
36                    <execution>
37                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
38                        <phase>package</phase> <!-- bind to the packaging phase -->
39                        <goals>
40                            <goal>single</goal>
41                        </goals>
42                    </execution>
43                </executions>
44            </plugin>
45        </plugins>
46    </build>
47
48</project>
Note: See TracBrowser for help on using the repository browser.