Browse Source

Add hamcrest to beans pom in the right place to make tests compile

pull/7/head
David Syer 15 years ago
parent
commit
c52915bde6
  1. 6
      .gitignore
  2. 2
      org.springframework.beans/pom.xml
  3. 4
      org.springframework.spring-parent/pom.xml

6
.gitignore vendored

@ -1,13 +1,15 @@
target target
bin
integration-repo integration-repo
ivy-cache ivy-cache
jmx.log jmx.log
.springBeans .springBeans
.settings
.DS_Store .DS_Store
*.sw* *.sw*
org.springframework.test/test-output/ org.springframework.test/test-output/
org.springframework.spring-parent/.classpath
org.springframework.spring-parent/.project
build.sh build.sh
org.springframework.beans/.settings/org.springframework.ide.eclipse.beans.core.prefs
org.springframework.beans/.settings/org.springframework.ide.eclipse.core.prefs
org.springframework.jdbc/derby.log org.springframework.jdbc/derby.log
spring-build spring-build

2
org.springframework.beans/pom.xml

@ -15,7 +15,7 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.hamcrest</groupId> <groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId> <artifactId>hamcrest-all</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>

4
org.springframework.spring-parent/pom.xml

@ -49,8 +49,8 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.hamcrest</groupId> <groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId> <artifactId>hamcrest-all</artifactId>
<version>1.2</version> <version>1.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>

Loading…
Cancel
Save