| <?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.commons</groupId> |
| <artifactId>MetaModel</artifactId> |
| <name>MetaModel</name> |
| <version>1.1-SNAPSHOT</version> |
| <description> |
| The eobjects.dk MetaModel is a common domain model, |
| query-engine and optimizer for different kinds of datastores. |
| </description> |
| <url>http://www.eobjects.dk/trac</url> |
| <inceptionYear>2007</inceptionYear> |
| <scm> |
| <connection> |
| scm:svn:http://www.eobjects.dk/svn/commons/MetaModel/trunk/ |
| </connection> |
| <developerConnection> |
| scm:svn:http:http://www.eobjects.dk/svn/commons/MetaModel/trunk/ |
| </developerConnection> |
| <url> |
| http://www.eobjects.dk/trac/browser/commons/MetaModel/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></notifiers> |
| </ciManagement> |
| <issueManagement> |
| <system>trac</system> |
| <url>http://www.eobjects.dk/trac</url> |
| </issueManagement> |
| <mailingLists></mailingLists> |
| <licenses> |
| <license> |
| <name>Apache License, Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
| </license> |
| </licenses> |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.5</source> |
| <target>1.5</target> |
| <encoding>utf-8</encoding> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <dependencies> |
| <dependency> |
| <groupId>joda-time</groupId> |
| <artifactId>joda-time</artifactId> |
| <version>1.5.2</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-math</groupId> |
| <artifactId>commons-math</artifactId> |
| <version>1.1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| <version>2.4</version> |
| </dependency> |
| <!-- OpenCSV can be omitted if CSV file support is not essential --> |
| <dependency> |
| <groupId>net.sf.opencsv</groupId> |
| <artifactId>opencsv</artifactId> |
| <version>1.8</version> |
| </dependency> |
| <!-- Apache POI can be omitted if Excel spreadsheet support is not essential --> |
| <dependency> |
| <groupId>org.apache.poi</groupId> |
| <artifactId>poi</artifactId> |
| <version>3.0.2-FINAL</version> |
| </dependency> |
| <!-- HSQLDB can be omitted if OpenOffice.org database file support is not essential --> |
| <dependency> |
| <groupId>hsqldb</groupId> |
| <artifactId>hsqldb</artifactId> |
| <version>1.8.0.7</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.2</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easymock</groupId> |
| <artifactId>easymock</artifactId> |
| <version>2.3</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.derby</groupId> |
| <artifactId>derby</artifactId> |
| <version>10.3.1.4</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>postgresql</groupId> |
| <artifactId>postgresql</artifactId> |
| <version>8.3-603.jdbc3</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>mysql</groupId> |
| <artifactId>mysql-connector-java</artifactId> |
| <version>5.1.6</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |