Author: davsclaus
Date: Fri Mar 16 10:11:55 2012
New Revision: 1301414
URL: http://svn.apache.org/viewvc?rev=1301414&view=rev
Log:
CAMEL-4900: Added persistent store test to camel-quartz. Thanks to Bryan for
sample app.
Added:
camel/branches/camel-2.8.x/components/camel-quartz/src/test/java/org/apache/camel/component/quartz/SpringQuartzPersistentStoreTest.java
- copied unchanged from r1301401,
camel/branches/camel-2.9.x/components/camel-quartz/src/test/java/org/apache/camel/component/quartz/SpringQuartzPersistentStoreTest.java
camel/branches/camel-2.8.x/components/camel-quartz/src/test/resources/org/apache/camel/component/quartz/SpringQuartzPersistentStoreTest.xml
- copied unchanged from r1301401,
camel/branches/camel-2.9.x/components/camel-quartz/src/test/resources/org/apache/camel/component/quartz/SpringQuartzPersistentStoreTest.xml
camel/branches/camel-2.8.x/components/camel-quartz/src/test/resources/tables_derby.sql
- copied unchanged from r1301401,
camel/branches/camel-2.9.x/components/camel-quartz/src/test/resources/tables_derby.sql
Modified:
camel/branches/camel-2.8.x/components/camel-quartz/ (props changed)
camel/branches/camel-2.8.x/components/camel-quartz/pom.xml
Propchange: camel/branches/camel-2.8.x/components/camel-quartz/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Fri Mar 16 10:11:55 2012
@@ -14,3 +14,5 @@ eclipse-classes
*.ipr
*.iml
*.iws
+*.idea
+derby.log
Modified: camel/branches/camel-2.8.x/components/camel-quartz/pom.xml
URL:
http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/components/camel-quartz/pom.xml?rev=1301414&r1=1301413&r2=1301414&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/components/camel-quartz/pom.xml (original)
+++ camel/branches/camel-2.8.x/components/camel-quartz/pom.xml Fri Mar 16
10:11:55 2012
@@ -100,6 +100,29 @@
<optional>true</optional>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>commons-dbcp</groupId>
+ <artifactId>commons-dbcp</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <!-- for persistent test -->
+ <dependency>
+ <groupId>org.apache.derby</groupId>
+ <artifactId>derby</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-jdbc</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context-support</artifactId>
+ <scope>test</scope>
+ </dependency>
+
</dependencies>
<build>