<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.evaserver</groupId>
	<artifactId>eva-properties</artifactId>
	<name>EvaProperties</name>
	<packaging>jar</packaging>
	<version>0.2.2</version>
	
	<url>http://www.evaserver.com/projects/eva-properties</url>
	
	<organization>
		<name>Max Antoni</name>
		<url>http://www.maxantoni.de</url>
	</organization>
	
	<description>Advanced properties with object factories, references and inheritance.</description>
	
	<scm>
		<connection>scm:svn:http://svn.evaserver.com/eva-properties/tags/eva-properties-0.2.2</connection>
		<developerConnection>scm:svn:http://svn.evaserver.com/eva-properties/tags/eva-properties-0.2.2</developerConnection>
		<url>http://svn.evaserver.com/eva-properties/tags/eva-properties-0.2.2</url>
	</scm>
	
	<ciManagement>
		<system>continuum</system>
		<url>http://continuum.evaserver.com</url>
		<notifiers>
			<notifier>
				<type>mail</type>
				<configuration>
					<address>dev@evaserver.com</address>
					<from-name>Continuum</from-name>
					<from-mailbox>dev@evaserver.com</from-mailbox>
				</configuration>
			</notifier>
		</notifiers>
	</ciManagement>
	
	<distributionManagement>
		<repository>
			<id>releases</id>
			<name>Release Repository</name>
			<url>file:///var/www/mvn-repo.evaserver.com/releases</url>
			<uniqueVersion>false</uniqueVersion>
		</repository>
		<snapshotRepository>
			<id>snapshots</id>
			<name>Snapshot Repository</name>
			<url>file:///var/www/mvn-repo.evaserver.com/snapshots</url>
			<uniqueVersion>true</uniqueVersion>
		</snapshotRepository>
		<site>
			<id>site</id>
			<name>Site</name>
			<url>file:///var/www/maxantoni.de/Public/projects/eva-properties</url>
		</site>
	</distributionManagement>
			
	<developers>
		<developer>
			<name>Maximilian Antoni</name>
			<id>max</id>
			<email>dev@evaserver.com</email>
			<organization>Max Antoni</organization>
			<roles>
				<role>Java Developer</role>
			</roles>
			<timezone>1</timezone>
		</developer>
	</developers>
	
	<contributors>
	</contributors>
	
	<mailingLists>
		<mailingList>
			<name>eva-properties</name>
			<post>eva-properties@lists.evaserver.com</post>
			<subscribe>eva-properties-join@lists.evaserver.com</subscribe>
			<unsubscribe>eva-properties-leave@lists.evaserver.com</unsubscribe>
			<archive>http://lists.evaserver.com/eva-properties/</archive>
		</mailingList>
	</mailingLists>
	
	<inceptionYear>2006</inceptionYear>
	
	<licenses>
		<license>
			<name>Revised BSD</name>
			<url>http://www.evaserver.com/projects/eva-properties/license.txt</url>
		</license>
	</licenses>
	
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
			</resource>
			<resource>
				<directory>${basedir}</directory>
				<includes>
					<include>LICENSE.txt</include>
				</includes>
				<targetPath>META-INF</targetPath>
			</resource>
		</resources>
		
		<plugins>
			<!-- Compiler settings -->
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.4</source>
					<target>1.4</target>
					<encoding>UTF-8</encoding>
					<debug>true</debug>
					<optimize>false</optimize>
				</configuration>
			</plugin>
			
			<!-- JavaDoc -->
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>javadoc</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			
			<!-- Create distribution -->
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<executions>
					<execution>
						<phase>package</phase>
						<configuration>
							<descriptors>
								<descriptor>src/main/assembly/bin.xml</descriptor>
								<descriptor>src/main/assembly/src.xml</descriptor>
							</descriptors>
						</configuration>
						<goals>
							<goal>attached</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			
			<!-- Clean test coverage instumentation -->
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.0</version>
				<executions>
					<execution>
						<goals>
							<goal>clean</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	
	<!--
		Reporting
	-->
	<reporting>	 
		<plugins>
		
			<!--
				Changelog from Subversion
				
				svn: not found :(
			
			<plugin>
				<artifactId>maven-changelog-plugin</artifactId>
				<version>2.0</version>
			</plugin> -->
			
			<!-- JavaDoc -->
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>
			
			<!-- Browsable code reference -->
			<plugin>
				<artifactId>maven-jxr-plugin</artifactId>
			</plugin>
	
			<!-- Surefire reports -->		
			<plugin> 
				<artifactId>maven-surefire-report-plugin</artifactId> 
			</plugin>
			
			<!-- Test coverage -->
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.0</version>
			</plugin>
		</plugins>
	</reporting>

</project>