<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.1.8</metamodel.version>
	</properties>
	<modelVersion>4.0.0</modelVersion>
	<groupId>dk.eobjects.metamodel</groupId>
	<artifactId>MetaModel</artifactId>
	<version>1.1.8</version>
	<name>MetaModel</name>
	<description>a common domain model, query-engine and optimizer for
		different kinds of datastores.</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-jdbc</module>
		<module>MetaModel-openoffice</module>
		<module>MetaModel-full</module>
		<module>MetaModel-packaging</module>
	</modules>
	<distributionManagement>
		<repository>
			<id>datacleaner-sf-repo</id>
			<url>sftp://web.sourceforge.net/home/groups/d/da/datacleaner/htdocs/m2-repo
			</url>
		</repository>
	</distributionManagement>
	<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 5 compatibility -->
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</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>
		</plugins>
	</build>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<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>
				<reportSets>
					<reportSet>
						<id>aggregate</id>
						<reports>
							<report>aggregate</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
		</plugins>
	</reporting>
</project>
