| Author |
Using Maven in Eclipse
|
Henrique Ordine
Ranch Hand
Joined: Sep 03, 2004
Posts: 127
|
|
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.
|
J2EE Architect/Developer
|
 |
Henrique Ordine
Ranch Hand
Joined: Sep 03, 2004
Posts: 127
|
|
Alright, my colleague that I don't even like helped me out. I needed to run mvn eclipse:myeclipse from the command line and then refresh my Eclipse project, and it worked.
Thanks anyway.
|
 |
 |
|
|
subject: Using Maven in Eclipse
|
|
|