<version>${project.version}</version>
<type>war</type>
</dependency>
+ <dependency>
+ <groupId>org.wamblee</groupId>
+ <artifactId>wamblee-mythtv-monitor</artifactId>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-ear-plugin</artifactId>
+ <configuration>
+ <defaultJavaBundleDir>lib/</defaultJavaBundleDir>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.wamblee</groupId>
<artifactId>wamblee-mythtv-monitor</artifactId>
- <packaging>war</packaging>
+ <packaging>jar</packaging>
<name>wamblee.org mythtv directory monitor MONITOR</name>
<url>http://wamblee.org</url>
<dependencies>
<dependency>
<groupId>org.wamblee</groupId>
- <artifactId>wamblee-support</artifactId>
- </dependency>
- <dependency>
- <groupId>quartz</groupId>
- <artifactId>quartz</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <scope>provided</scope>
+ <artifactId>wamblee-mythtv-monitor</artifactId>
+ <version>${project.version}</version>
</dependency>
</dependencies>
<webXml>${basedir}/src/webapp/WEB-INF/web.xml</webXml>
<warName>wamblee-mythtv</warName>
<warSourceDirectory>src/webapp</warSourceDirectory>
+ <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
+ <archive>
+ <manifest>
+ <addClasspath>true</addClasspath>
+ <classpathPrefix>lib</classpathPrefix>
+ </manifest>
+ </archive>
</configuration>
</plugin>
</plugins>