You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mi...@apache.org on 2010/09/14 21:01:18 UTC

svn commit: r997041 - /openjpa/trunk/openjpa-persistence-jdbc/pom.xml

Author: mikedd
Date: Tue Sep 14 19:01:18 2010
New Revision: 997041

URL: http://svn.apache.org/viewvc?rev=997041&view=rev
Log:
add profile for testing sybase with jConnect

Modified:
    openjpa/trunk/openjpa-persistence-jdbc/pom.xml

Modified: openjpa/trunk/openjpa-persistence-jdbc/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-persistence-jdbc/pom.xml?rev=997041&r1=997040&r2=997041&view=diff
==============================================================================
--- openjpa/trunk/openjpa-persistence-jdbc/pom.xml (original)
+++ openjpa/trunk/openjpa-persistence-jdbc/pom.xml Tue Sep 14 19:01:18 2010
@@ -287,6 +287,25 @@
             </properties>
         </profile>
         
+        <!-- Profile for testing with Sybase DB using the jConnect driver -->
+        <profile>
+            <id>test-sybase-jconnect</id>
+            <dependencies>
+                <dependency>
+                    <groupId>${jconnect.groupId}</groupId>
+                    <artifactId>${jconnect.artifactId}</artifactId>
+                    <version>${jconnect.version}</version>
+                    <scope>test</scope>
+                </dependency>
+            </dependencies>
+            <properties>
+                <connection.driver.name>com.sybase.jdbc3.jdbc.SybDriver</connection.driver.name>
+                <connection.url>${openjpa.sybase.url}</connection.url>
+                <connection.username>${openjpa.sybase.username}</connection.username>
+                <connection.password>${openjpa.sybase.password}</connection.password>
+            </properties>
+        </profile>
+        
         <!-- Profile for testing with Ingres DB -->
         <profile>
             <id>test-ingres</id>