<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>
	<parent>
		<groupId>net.sourceforge.wife</groupId>
		<artifactId>wife</artifactId>
		<version>1.0</version>
	</parent>
	<artifactId>swift-model</artifactId>
	<packaging>jar</packaging>
	<version>1.0</version>
	<name>SWIFT Message Model </name>
	<url>http://wife.sourceforge.net</url>
	<ciManagement></ciManagement>
	<description>
		Main classes for modelling SWIFT messages.
	</description>
	<!-- 
	<scm>
		<connection>
		</connection>
	</scm>
	 -->
	<dependencies>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.13</version>
		</dependency>
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.1</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>changelog-maven-plugin</artifactId>
				<version>2.0-beta-1</version>
				<configuration>
					<type>tag</type>
					<tags>
						<tag implementation="java.lang.String">
							release_1_0
						</tag>
					</tags>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>2.0-beta-4</version>
			</plugin>
		</plugins>
		<extensions>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh-external</artifactId>
				<version>1.0-alpha-5</version>
			</extension>
		</extensions>
	</build>
	<distributionManagement>
		<site>
			<id>website.sf</id>
			<url>
				scp://shell.sf.net/home/groups/s/sw/swift-parser/htdocs
			</url>
		</site>
		<repository>
			<id>mazinger</id>
			<name>Mazinger at Technisys</name>
			<url>scpexe://mazinger/usr/site/opt/maven2-repo</url>
		</repository>
	</distributionManagement>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>surefire-report-maven-plugin</artifactId>
				<version>2.0-beta-1</version>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>jxr-maven-plugin</artifactId>
				<version>2.0-beta-1</version>
			</plugin>
			<!-- 
				<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-clover-plugin</artifactId>
				<version>2.0</version>
				</plugin>
			-->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
				<version>2.0-alpha-2</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.0-beta-3</version>
			</plugin>
			<!-- 
				<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>maven-jdepend-plugin</artifactId>
				<version>1.0-SNAPSHOT</version>
				</plugin>
			-->
		</plugins>
	</reporting>
</project>