<project>
	<modelVersion>4.0.0</modelVersion>
	
	<groupId>org.freecompany.util</groupId>
	<artifactId>util-text</artifactId>
	<version>0.3.5</version>
	<packaging>jar</packaging>
	<name>Text Processing Utilities</name> 
	<description>Library for test processing</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/text</url>
	</scm>
	
	<dependencies>
		<dependency>
			<groupId>org.freecompany.util</groupId>
			<artifactId>util-multicaster</artifactId>
			<version>0.3.3</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.3</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<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>
