<project>
	<modelVersion>4.0.0</modelVersion>
	
	<groupId>org.freecompany.util</groupId>
	<artifactId>util-xml-editor</artifactId>
	<version>0.0.6</version>
	<packaging>jar</packaging>
	<name>Xml Editor</name> 
	<description>Library for easy XML document manipulation.</description>
	<organization>
		<name>FreeCompany</name>
		<url>http://www.freecompany.org/index.html</url>
	</organization>
	<url>http://www.freecompany.org/index.html</url>	
	<licenses>
		<license>
			<name>MIT</name>
			<url>http://www.opensource.org/licenses/mit-license.php</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<url>scm:svn:https://www.freecompany.org/svn/public/util/trunk/xml/editor</url>
	</scm>

	<build>
		<defaultGoal>install</defaultGoal>
		<sourceDirectory>source/main</sourceDirectory>
		<testSourceDirectory>source/test</testSourceDirectory>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<compilerArgument>-Xlint:all,-deprecation</compilerArgument>
					<showWarnings>true</showWarnings>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<test>*Test</test>
					<excludes/>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<distributionManagement>
		<repository>
			<id>ssh-repository</id>
			<url>scpexe://maven.freecompany.org/external/repositories/maven</url>
		</repository>
	</distributionManagement>
	
</project>
