<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">
	<properties>
		<metamodel.version>1.5-RC1</metamodel.version>
		<slf4j.version>1.6.1</slf4j.version>
		<junit.version>4.8.1</junit.version>
		<easymock.version>2.3</easymock.version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<parent>
		<!-- Uses the OSS sonatype nexus repository for distribution -->
		<!-- See https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide -->
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>5</version>
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<groupId>org.eobjects.metamodel</groupId>
	<artifactId>MetaModel</artifactId>
	<version>1.5-RC1</version>
	<name>MetaModel</name>
	<description>A library that encapsulates and enhances the differences
		and capabilities of different datastores. Rich querying abilities are
		offered to datastores that do not otherwise support advanced querying
		and a unified view of the datastore structure is offered through a
		single model of the schemas, tables, columns and relationships.</description>
	<url>http://eobjects.org/metamodel</url>
	<inceptionYear>2007</inceptionYear>
	<packaging>pom</packaging>
	<scm>
		<connection>
			scm:svn:http://eobjects.org/svn/MetaModel/trunk/
		</connection>
		<developerConnection>
			scm:svn:http://eobjects.org/svn/MetaModel/trunk/
		</developerConnection>
		<url>
			http://eobjects.org/trac/browser/MetaModel/trunk 
		</url>
	</scm>
	<modules>
		<module>MetaModel-core</module>
		<module>MetaModel-testware</module>
		<module>MetaModel-querypostprocessor</module>
		<module>MetaModel-excel</module>
		<module>MetaModel-csv</module>
		<module>MetaModel-xml</module>
		<module>MetaModel-dbase</module>
		<module>MetaModel-access</module>
		<module>MetaModel-jdbc</module>
		<module>MetaModel-openoffice</module>
		<module>MetaModel-full</module>
		<module>MetaModel-packaging</module>
	</modules>
	<ciManagement>
		<system>hudson</system>
		<url>http://eobjects.org/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://eobjects.org/trac</url>
	</issueManagement>
	<mailingLists>
		<mailingList>
			<name>MetaModel mailing list</name>
			<archive>http://groups.google.com/group/metamodel</archive>
			<post>metamodel@googlegroups.com</post>
		</mailingList>
	</mailingLists>
	<developers>
		<developer>
			<id>kasper</id>
			<name>Kasper Sørensen</name>
			<email>kasper@eobjects.dk</email>
			<url>http://eobjects.org/trac/wiki/KasperSorensen</url>
			<organization>eobjects.org</organization>
			<organizationUrl>http://eobjects.org</organizationUrl>
		</developer>
	</developers>
	<licenses>
		<license>
			<name>Lesser General Public License</name>
			<url>http://www.gnu.org/licenses/lgpl.txt</url>
		</license>
	</licenses>
	<build>
		<plugins>
			<!-- Ensures java 6 compatibility -->
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
					<encoding>utf-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<!-- Makes source jar's available also (for repo deployment) -->
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<!-- Aggregates javadoc -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>aggregate</id>
						<goals>
							<goal>aggregate</goal>
						</goals>
						<phase>site</phase>
						<configuration>
							<aggregate>true</aggregate>
							<!-- requires graphviz to generate UML diagrams -->
							<doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
							<docletArtifact>
								<groupId>org.umlgraph</groupId>
								<artifactId>doclet</artifactId>
								<version>5.1</version>
							</docletArtifact>
							<useStandardDocletOptions>true</useStandardDocletOptions>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<!-- Signs the artifact with GPG -->
			<!-- see http://www.sonatype.com/people/2010/01/how-to-generate-pgp-signatures-with-maven/ -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
				<configuration>
					<sourceEncoding>utf-8</sourceEncoding>
					<minimumTokens>100</minimumTokens>
					<targetJdk>1.6</targetJdk>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>findbugs-maven-plugin</artifactId>
				<configuration>
					<xmlOutput>true</xmlOutput>
					<effort>Max</effort>
				</configuration>
			</plugin>
		</plugins>
	</reporting>
	<pluginRepositories>
		<pluginRepository>
			<id>Codehaus repository</id>
			<url>http://repository.codehaus.org/</url>
		</pluginRepository>
	</pluginRepositories>
</project>
