<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.acme</groupId>
	<artifactId>xda-config</artifactId>
	<packaging>jar</packaging>
	<version>3.4.1-SNAPSHOT</version>
	<name>xda-config</name>
	<description>
		This project contains common components for all acme XDA
	</description>
	<url>http://www.acme.net/xda-config</url>
	<parent>
		<groupId>com.acme</groupId>
		<artifactId>xda</artifactId>
		<version>3.4.1-SNAPSHOT</version>
	</parent>
	<build>
		<filters>
			<filter>
				${basedir}/src/main/filters/config-filter.properties
			</filter>
		</filters>
		<resources>
			<resource>
				<directory>${basedir}/src/main/resources</directory>
				<filtering>true</filtering>
			</resource>
		</resources>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<includes>
						<include>**/*Test.java</include>
					</includes>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<!-- for testing -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.3.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<developers>
		<developer>
			<name>joe smith</name>
			<id>jsmith</id>
			<email>jsmith at acme.com</email>
			<timezone>-8</timezone>
		</developer>
	</developers>
</project>