(no commit message)
[utils] / mythtv / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5   <parent>
6     <groupId>org.wamblee</groupId>
7     <artifactId>wamblee-utils</artifactId>
8     <version>0.2-SNAPSHOT</version>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.wamblee</groupId>
13   <artifactId>wamblee-mythtv</artifactId>
14   <packaging>pom</packaging>
15   <name>/mythtv</name>
16   <url>http://wamblee.org</url>
17   
18   <modules>
19     <module>monitor</module>
20     <module>war</module>
21     <module>timer</module>
22     <module>ear</module>
23   </modules>
24   
25   <dependencies>
26   </dependencies>
27
28   <build>
29     <plugins>
30        <plugin>
31           <groupId>org.apache.maven.plugins</groupId>
32           <artifactId>maven-war-plugin</artifactId>
33           <configuration>
34                 <webXml>${basedir}/src/webapp/WEB-INF/web.xml</webXml>
35                 <warName>wamblee-mythtv</warName>
36                 <warSourceDirectory>src/webapp</warSourceDirectory>
37           </configuration>
38         </plugin>
39     </plugins>
40   </build>
41
42 </project>