Author: gawor
Date: Wed Jun 24 20:47:40 2009
New Revision: 788177
URL: http://svn.apache.org/viewvc?rev=788177&view=rev
Log:
don't create undefined directory and delete the database during mvn install (so that running
mvn install multiple times works ok)
Modified:
geronimo/server/trunk/plugins/uddi/uddi-db/pom.xml
Modified: geronimo/server/trunk/plugins/uddi/uddi-db/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/uddi/uddi-db/pom.xml?rev=788177&r1=788176&r2=788177&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/uddi/uddi-db/pom.xml (original)
+++ geronimo/server/trunk/plugins/uddi/uddi-db/pom.xml Wed Jun 24 20:47:40 2009
@@ -32,10 +32,6 @@
<packaging>car</packaging>
<name>Geronimo Plugins, UDDI : Database</name>
- <!--<properties>-->
- <!--<derby.system.home>${project.build.outputDirectory}/META-INF/${pom.artifactId}/var/derby</derby.system.home>-->
- <!--</properties>-->
-
<dependencyManagement>
<dependencies>
<dependency>
@@ -85,8 +81,7 @@
</goals>
<configuration>
<tasks>
- <delete dir="${derby.system.home}"/>
- <mkdir dir="${derby.system.home}"/>
+ <delete dir="${project.build.outputDirectory}/var/derby"/>
</tasks>
</configuration>
</execution>
|