Skip to content

Commit

Permalink
updated dependencies in pom
Browse files Browse the repository at this point in the history
  • Loading branch information
toby-weston-db committed Jan 14, 2014
1 parent a735a9d commit ad549a8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 25 deletions.
34 changes: 10 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,10 @@


<dependencies>
<!--<dependency>-->
<!--<groupId>org.jmock</groupId>-->
<!--<artifactId>jmock</artifactId>-->
<!--<version>2.6.0-RC2</version>-->
<!--<scope>test</scope>-->
<!--</dependency>-->
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-junit4</artifactId>
<version>2.6.0-RC2</version>
<version>2.6.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand All @@ -77,30 +71,24 @@
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-legacy</artifactId>
<version>2.6.0-RC2</version>
<version>2.6.0</version>
<scope>test</scope>
</dependency>
<!--<dependency>-->
<!--<groupId>jmock</groupId>-->
<!--<artifactId>jmock-cglib</artifactId>-->
<!--<version>1.2.0</version>-->
<!--<scope>test</scope>-->
<!--</dependency>-->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3.RC2</version>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3.RC2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<version>4.10</version>
</dependency>
</dependencies>

Expand All @@ -109,7 +97,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
Expand All @@ -118,7 +106,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.1</version>
<version>2.2</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -132,7 +120,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -182,7 +170,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -203,15 +190,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.10</version>
<version>2.16</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
<version>2.4</version>
</plugin>
</plugins>
</reporting>


</project>
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public class CompositeFactoryTest {
private final Factory<String> factory2 = context.mock(Factory.class, "factory2");
private final Factory<String> factory3 = context.mock(Factory.class, "factory3");


@Test
public void returnsOnSuccessfulDelegateCreate() {
final Sequence sequence = context.sequence("enumeration");
Expand Down

0 comments on commit ad549a8

Please sign in to comment.