<?xml version="1.0" encoding="UTF-8"?>
<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>dk.eobjects.datacleaner</groupId>
	<artifactId>DataCleaner-gui</artifactId>
	<name>DataCleaner-gui</name>
	<version>1.2</version>
	<description>
		A Swing-based standalone desktop-application for working with
		Data Quality. This application offers data profiling, comparing
		and validation of rules.
	</description>
	<url>http://www.eobjects.dk/datacleaner</url>
	<inceptionYear>2007</inceptionYear>
	<scm>
		<connection>
			scm:svn:http://www.eobjects.dk/svn/datacleaner/DataCleaner-gui/trunk/
		</connection>
		<developerConnection>
			scm:svn:http:http://www.eobjects.dk/svn/datacleaner/DataCleaner-gui/trunk/
		</developerConnection>
		<url>
			http://www.eobjects.dk/trac/browser/datacleaner/DataCleaner-gui/trunk
		</url>
	</scm>
	<distributionManagement>
		<repository>
			<id>datacleaner-sf-repo</id>
			<url>
				scp://shell.sourceforge.net/home/groups/d/da/datacleaner/htdocs/m2-repo
			</url>
		</repository>
	</distributionManagement>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</reporting>
	<ciManagement>
		<system>hudson</system>
		<url>http://www.eobjects.dk/hudson/</url>
		<notifiers>
			<notifier>
				<address>datacleaner-notify@googlegroups.com</address>
				<sendOnWarning>true</sendOnWarning>
				<sendOnError>true</sendOnError>
				<sendOnFailure>true</sendOnFailure>
			</notifier>
		</notifiers>
	</ciManagement>
	<issueManagement>
		<system>trac</system>
		<url>http://www.eobjects.dk/trac</url>
	</issueManagement>
	<mailingLists>
		<mailingList>
			<name>DataCleaner mailing list</name>
			<archive>http://groups.google.dk/group/datacleaner</archive>
			<post>datacleaner@googlegroups.com</post>
		</mailingList>
	</mailingLists>
	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
		</license>
	</licenses>
	<build>
		<finalName>datacleaner-gui</finalName>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<encoding>utf-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifest>
							<addClasspath>true</addClasspath>
							<mainClass>
								dk.eobjects.datacleaner.gui.DataCleanerGui
							</mainClass>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-dependency-plugin</artifactId>
				<executions>
					<execution>
						<id>copy</id>
						<phase>package</phase>
						<goals>
							<goal>copy-dependencies</goal>
						</goals>
						<configuration>
							<outputDirectory>
								${project.build.directory}/lib
							</outputDirectory>
							<includeScope>runtime</includeScope>
							<overWriteReleases>false</overWriteReleases>
							<overWriteSnapshots>
								true
							</overWriteSnapshots>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>dk.eobjects.datacleaner</groupId>
			<artifactId>DataCleaner-core</artifactId>
			<version>1.2</version>
		</dependency>
		<dependency>
			<groupId>dk.eobjects.commons</groupId>
			<artifactId>MetaModel</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring</artifactId>
			<version>2.5.4</version>
		</dependency>
		<dependency>
			<groupId>com.jgoodies</groupId>
			<artifactId>looks</artifactId>
			<version>2.1.2</version>
		</dependency>
		<dependency>
			<groupId>org.swinglabs</groupId>
			<artifactId>swingx</artifactId>
			<version>0.9.2</version>
		</dependency>
		<dependency>
			<groupId>org.swinglabs</groupId>
			<artifactId>swing-worker</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.2</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>uispec4j</groupId>
			<artifactId>uispec4j</artifactId>
			<version>1.5</version>
		</dependency>
	</dependencies>
</project>
