Author: mvdb
Date: Thu Dec 22 15:32:26 2005
New Revision: 358654
URL: http://svn.apache.org/viewcvs?rev=358654&view=rev
Log:
Initial cut at a maven2 pom.xml. This is just for having correct metadata in
the maven repositories, not for actual building.
Still needs work though, eg the betwixt version should be updated when there is
a newer version available.
Added:
db/ddlutils/trunk/pom.xml
Added: db/ddlutils/trunk/pom.xml
URL:
http://svn.apache.org/viewcvs/db/ddlutils/trunk/pom.xml?rev=358654&view=auto
==============================================================================
--- db/ddlutils/trunk/pom.xml (added)
+++ db/ddlutils/trunk/pom.xml Thu Dec 22 15:32:26 2005
@@ -0,0 +1,69 @@
+<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>org.apache.db.ddlutils</groupId>
+ <artifactId>ddlutils</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0-SNAPSHOT</version>
+ <name>Apache DdlUtils</name>
+ <url>http://db.apache.org/ddlutils</url>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-betwixt</groupId>
+ <artifactId>commons-betwixt</artifactId>
+ <version>0.7</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-pool</groupId>
+ <artifactId>commons-pool</artifactId>
+ <version>1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-dbcp</groupId>
+ <artifactId>commons-dbcp</artifactId>
+ <version>1.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>stax</groupId>
+ <artifactId>stax-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>dom4j</groupId>
+ <artifactId>dom4j</artifactId>
+ <version>1.4</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <sourceDirectory>src/java</sourceDirectory>
+ <testSourceDirectory>src/test</testSourceDirectory>
+ </build>
+
+ <reporting>
+ <plugins>
+ </plugins>
+ </reporting>
+</project>