When trying to use Flway application integration to test an OSGi application using Pax Exam, I get the following error

myTest:myTest.myTest:PaxRunnerTestContainer{felix}(com.example.sys.test.paxtests.myTest): 
javax.sql.DataSource not found by com.googlecode.flyway.core [32]

when I instantiate a new Flyway

Flyway flyway = new Flyway(); 

I am provisioning Flwyay and javax.sql thusly:

return provision(
...
wrappedBundle("http://mirrors.ibiblio.org/pub/mirrors/maven2/javax/sql/jdbc-stdext/2.0/jdbc-stdext-2.0-sources.jar"),
wrappedBundle(mavenBundle().groupId("com.googlecode.flyway").artifactId("flyway-core").version("1.5")),
...
);

Is there a proper way to do this so that Flyway is aware of javax.sql?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

This has been reported here: http://code.google.com/p/flyway/issues/detail?id=181 Feel free to star it. :-)

I'll look into fixing this and adding a proper integration test for OSGi environments to the Flyway build in time for the next release.

link|improve this answer
Thanks, Axel. Enjoying Flyway. – bob slipper Jan 18 at 1:33
Always a pleasure to read this :-) – Axel Fontaine Jan 18 at 23:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.