mess around with poms to make maven work

This commit is contained in:
dsyer
2008-11-04 22:05:53 +00:00
parent 1251e18bbd
commit 7fdfe6bd34
7 changed files with 32 additions and 15 deletions

View File

@@ -54,8 +54,8 @@
</build>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>com.springsource.org.junit</artifactId>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
@@ -125,6 +125,11 @@
<groupId>javax.persistence</groupId>
<artifactId>com.springsource.javax.persistence</artifactId>
</dependency>
<dependency>
<!-- TODO: remove this or find a replacement in Java 5 / BRITS -->
<groupId>stax</groupId>
<artifactId>stax</artifactId>
</dependency>
<!-- Spring Dependencies -->
<dependency>
<groupId>org.springframework.ws</groupId>

View File

@@ -152,6 +152,7 @@ public class FileUtilsTests {
@Before
public void setUp() throws Exception {
file.delete();
Assert.state(!file.exists());
}