You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by ms...@apache.org on 2007/02/16 22:25:29 UTC

svn commit: r508587 - in /incubator/ode/trunk: dao-hibernate-db-derby/build.xml dao-jpa-ojpa-derby/build.xml jbi/pom.xml

Author: mszefler
Date: Fri Feb 16 13:25:28 2007
New Revision: 508587

URL: http://svn.apache.org/viewvc?view=rev&rev=508587
Log:
Changed the name of the generated databases to hibdb/jpadb.


Modified:
    incubator/ode/trunk/dao-hibernate-db-derby/build.xml
    incubator/ode/trunk/dao-jpa-ojpa-derby/build.xml
    incubator/ode/trunk/jbi/pom.xml

Modified: incubator/ode/trunk/dao-hibernate-db-derby/build.xml
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/dao-hibernate-db-derby/build.xml?view=diff&rev=508587&r1=508586&r2=508587
==============================================================================
--- incubator/ode/trunk/dao-hibernate-db-derby/build.xml (original)
+++ incubator/ode/trunk/dao-hibernate-db-derby/build.xml Fri Feb 16 13:25:28 2007
@@ -19,7 +19,7 @@
 
 <project name="dao-hibernate-db-derby" default="db" >
     <property name="database.dir" value="${basedir}/target/derby" />
-    <property name="database.name" value="data" />
+    <property name="database.name" value="hibdb" />
 
     <property name="target.dir" value="${basedir}/target" />
     <property name="src.sql.dir" value="${basedir}/src/main/sql" />

Modified: incubator/ode/trunk/dao-jpa-ojpa-derby/build.xml
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/dao-jpa-ojpa-derby/build.xml?view=diff&rev=508587&r1=508586&r2=508587
==============================================================================
--- incubator/ode/trunk/dao-jpa-ojpa-derby/build.xml (original)
+++ incubator/ode/trunk/dao-jpa-ojpa-derby/build.xml Fri Feb 16 13:25:28 2007
@@ -42,7 +42,7 @@
     <property name="sql.generate.dir" value="${basedir}/target" />
     <property name="target.dir" value="${basedir}/target" />
     <property name="database.dir" value="${basedir}/target/derby" />
-    <property name="database.name" value="data" />
+    <property name="database.name" value="jpadb" />
     <property name="derby.target.sql" value="${target.dir}/derby.sql" />
     <property name="src.sql.dir" value="${basedir}/src/main/scripts" />
 

Modified: incubator/ode/trunk/jbi/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/jbi/pom.xml?view=diff&rev=508587&r1=508586&r2=508587
==============================================================================
--- incubator/ode/trunk/jbi/pom.xml (original)
+++ incubator/ode/trunk/jbi/pom.xml Fri Feb 16 13:25:28 2007
@@ -155,7 +155,7 @@
 				<version>1.0</version>
 				<executions>
 					<execution>
-						<id>unpack-samples</id>
+						<id>unpack-jpa</id>
 						<phase>generate-resources</phase>
 						<goals>
 							<goal>unpack</goal>
@@ -166,6 +166,24 @@
 								<artifactItem>
 									<groupId>org.apache.ode</groupId>
 									<artifactId>ode-jpa-ojpa-derby</artifactId>
+									<version>${pom.version}</version>
+									<type>tar</type>
+								</artifactItem>							
+							</artifactItems>
+						</configuration>
+					</execution>
+					<execution>
+						<id>unpack-hib</id>
+						<phase>generate-resources</phase>
+						<goals>
+							<goal>unpack</goal>
+						</goals>
+						<configuration>
+							<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}-installer</outputDirectory>
+							<artifactItems>
+								<artifactItem>
+									<groupId>org.apache.ode</groupId>
+									<artifactId>ode-dao-hibernate-db-derby</artifactId>
 									<version>${pom.version}</version>
 									<type>tar</type>
 								</artifactItem>