source: vlo/branches/to-wicket-1.6/pom.xml @ 4220

Last change on this file since 4220 was 4220, checked in by twagoo, 10 years ago

Merged twagoo branch of to-wicket-1.6 back to original, removed this branch

File size: 2.0 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2
3<project xmlns="http://maven.apache.org/POM/4.0.0" 
4         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
5         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0                       
6                             http://maven.apache.org/xsd/maven-4.0.0.xsd"
7>
8   
9    <modelVersion>4.0.0</modelVersion>
10    <groupId>eu.clarin.cmdi</groupId>
11    <artifactId>vlo</artifactId>
12    <name>Virtual Language Observatory</name>
13    <packaging>pom</packaging>
14   
15    <!-- When updating the version number here, also update the version number
16         in each module's pom.xml
17    -->
18    <version>2.17</version>
19   
20    <description>Virtual Language Observatory (VLO) parent project</description>
21
22    <modules>
23        <module>vlo_solr</module>
24        <module>vlo_web_app</module>
25        <module>vlo_importer</module>
26    </modules>
27
28    <properties>
29        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30    </properties>
31
32    <build>
33        <plugins>
34            <plugin>
35                <artifactId>maven-assembly-plugin</artifactId>
36                <version>2.3</version>
37                <configuration>
38                    <descriptors>
39                        <descriptor>src/main/assembly/installPackageBuilder.xml</descriptor>
40                    </descriptors>
41                </configuration>
42                <executions>
43                    <execution>
44                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
45                        <phase>package</phase> <!-- bind to the packaging phase -->
46                        <goals>
47                            <goal>single</goal>
48                        </goals>
49                    </execution>
50                </executions>
51            </plugin>
52        </plugins>
53    </build>
54   
55    <repositories>
56        <repository>
57            <id>MPI</id>
58            <name>MPI LAT Repository</name>
59            <url>http://lux15.mpi.nl/nexus/content/groups/public</url>
60        </repository>
61    </repositories>
62</project>
Note: See TracBrowser for help on using the repository browser.