Hi everyone,
I've created a new
Java Maven Project on Eclipse and I added a DBUnit dependency to my POM, like this:
<dependency>
<groupId>dbunit</groupId>
<artifactId>dbunit</artifactId>
<version>2.1</version>
<scope>
test</scope>
</dependency>
Then I ran mvn install from my project's home directory.
When I create a new Class is my src.test.java directory and try to extend DBTestCase, that class is not found.
Isn't it that simple?
Thanks in advance for any help.