Adding a maven archetype to kick start DLUX application creation.
[dlux.git] / archetype / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.dlux</groupId>
7         <artifactId>dlux-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11     <artifactId>dlux-app</artifactId>
12     <packaging>maven-archetype</packaging>
13     <name>archetype-dlux-app</name>
14
15     <build>
16         <extensions>
17             <extension>
18                 <groupId>org.apache.maven.archetype</groupId>
19                 <artifactId>archetype-packaging</artifactId>
20                 <version>2.2</version>
21             </extension>
22         </extensions>
23
24         <pluginManagement>
25             <plugins>
26                 <plugin>
27                     <artifactId>maven-archetype-plugin</artifactId>
28                     <version>2.2</version>
29                 </plugin>
30             </plugins>
31         </pluginManagement>
32     </build>
33 </project>