You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ddlutils-dev@db.apache.org by mv...@apache.org on 2006/03/11 16:36:02 UTC

svn commit: r385093 - /db/ddlutils/trunk/pom.xml

Author: mvdb
Date: Sat Mar 11 07:36:01 2006
New Revision: 385093

URL: http://svn.apache.org/viewcvs?rev=385093&view=rev
Log:
Apply patch provided by Carlos Sanchesz (DDLUTILS-58).
Just changes the version of the parent pom to 1 instead of 1.0

Thanx for the patch.

Modified:
    db/ddlutils/trunk/pom.xml

Modified: db/ddlutils/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/pom.xml?rev=385093&r1=385092&r2=385093&view=diff
==============================================================================
--- db/ddlutils/trunk/pom.xml (original)
+++ db/ddlutils/trunk/pom.xml Sat Mar 11 07:36:01 2006
@@ -1,6 +1,11 @@
 <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>
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>1</version>
+  </parent>
   <groupId>org.apache.db.ddlutils</groupId>
   <artifactId>ddlutils</artifactId>
   <packaging>jar</packaging>
@@ -12,13 +17,13 @@
       <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>
+      <optional>true</optional>
     </dependency>
     <dependency>
       <groupId>commons-betwixt</groupId>
@@ -60,15 +65,34 @@
       <artifactId>commons-codec</artifactId>
       <version>1.3</version>
     </dependency>
+    <dependency>
+      <groupId>oro</groupId>
+      <artifactId>oro</artifactId>
+      <version>2.0.8</version>
+    </dependency>
   </dependencies>
 
+  <properties>
+    <jdbc.properties.file>jdbc.properties.hsqldb</jdbc.properties.file>
+  </properties>
+
   <build>
-     <sourceDirectory>src/java</sourceDirectory>
-     <testSourceDirectory>src/test</testSourceDirectory>
+    <sourceDirectory>src/java</sourceDirectory>
+    <testSourceDirectory>src/test</testSourceDirectory>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemProperties>
+            <property>
+              <name>jdbc.properties.file</name>
+              <value>${jdbc.properties.file}</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
+    </plugins>
   </build>
 
-   <reporting>
-      <plugins>
-      </plugins>
-   </reporting>
 </project>