Skip to content

Commit 89b0980

Browse files
author
oliverbye
committed
Merge remote-tracking branch 'origin/master'
2 parents 8e98d57 + 50c9893 commit 89b0980

File tree

12 files changed

+21
-28
lines changed

12 files changed

+21
-28
lines changed

README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,18 @@
44

55
# Maven
66
```xml
7-
<dependency>
8-
<groupId>org.jmock</groupId>
9-
<artifactId>jmock-imposters</artifactId>
10-
<version>2.10.0-RC3</version>
11-
<scope>test</scope>
12-
</dependency>
137
<dependency>
148
<groupId>org.jmock</groupId>
159
<artifactId>jmock-junit5</artifactId>
16-
<version>2.10.0-RC3</version>
10+
<version>2.11.0</version>
1711
<scope>test</scope>
1812
</dependency>
1913
```
2014
# Gradle
2115
```
2216
testCompile(
23-
"junit:junit5:2.10.0",
24-
"org.jmock:jmock-imposters:2.10.0-RC3"
25-
"org.jmock:jmock-junit5:2.10.0-RC3"
17+
"junit:junit5:5.3.1",
18+
"org.jmock:jmock-junit5:2.11.0"
2619
)
2720
```
2821
# Recent Changes

jmock-example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.jmock</groupId>
1414
<artifactId>jmock-parent</artifactId>
15-
<version>2.10.0-RC3</version>
15+
<version>2.11.0</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

@@ -47,12 +47,12 @@
4747
<dependency>
4848
<groupId>org.jmock</groupId>
4949
<artifactId>jmock-junit3</artifactId>
50-
<version>2.10.0-RC3</version>
50+
<version>2.11.0</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.jmock</groupId>
5454
<artifactId>jmock-junit4</artifactId>
55-
<version>2.10.0-RC3</version>
55+
<version>2.11.0</version>
5656
</dependency>
5757
</dependencies>
5858

jmock-imposters-tests/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.jmock</groupId>
88
<artifactId>jmock-parent</artifactId>
9-
<version>2.10.0-RC3</version>
9+
<version>2.11.0</version>
1010
</parent>
1111
<artifactId>jmock-imposters-tests</artifactId>
1212

@@ -15,23 +15,23 @@
1515
<dependency>
1616
<groupId>org.jmock</groupId>
1717
<artifactId>jmock</artifactId>
18-
<version>2.10.0-RC3</version>
18+
<version>2.11.0</version>
1919
<type>test-jar</type>
2020
</dependency>
2121
<dependency>
2222
<groupId>org.jmock</groupId>
2323
<artifactId>jmock-junit4</artifactId>
24-
<version>2.10.0-RC3</version>
24+
<version>2.11.0</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>org.jmock</groupId>
2828
<artifactId>jmock-junit5</artifactId>
29-
<version>2.10.0-RC3</version>
29+
<version>2.11.0</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.jmock</groupId>
3333
<artifactId>jmock-testjar</artifactId>
34-
<version>2.10.0-RC3</version>
34+
<version>2.11.0</version>
3535
<scope>test</scope>
3636
</dependency>
3737

jmock-imposters/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.jmock</groupId>
88
<artifactId>jmock-parent</artifactId>
9-
<version>2.10.0-RC3</version>
9+
<version>2.11.0</version>
1010
</parent>
1111
<artifactId>jmock-imposters</artifactId>
1212
<description>Class mocks are more numerous than interface mocks, so drop the legacy name</description>

jmock-junit3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jmock</groupId>
77
<artifactId>jmock-parent</artifactId>
8-
<version>2.10.0-RC3</version>
8+
<version>2.11.0</version>
99
</parent>
1010

1111
<artifactId>jmock-junit3</artifactId>

jmock-junit4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.jmock</groupId>
1212
<artifactId>jmock-parent</artifactId>
13-
<version>2.10.0-RC3</version>
13+
<version>2.11.0</version>
1414
</parent>
1515

1616
<properties>

jmock-junit5/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.jmock</groupId>
1111
<artifactId>jmock-parent</artifactId>
12-
<version>2.10.0-RC3</version>
12+
<version>2.11.0</version>
1313
</parent>
1414

1515
<properties>

jmock-junit5/src/test/java/org/jmock/junit5/testdata/JUnit5TestThatDoesSatisfyExpectations.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ public class JUnit5TestThatDoesSatisfyExpectations {
1010

1111
@RegisterExtension
1212
JUnit5Mockery context = new JUnit5Mockery();
13-
13+
1414
@Mock
1515
private Runnable runnable;
16-
16+
1717
@Test
1818
public void doesSatisfyExpectations() {
1919
context.checking(new Expectations() {{

jmock-legacy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.jmock</groupId>
1212
<artifactId>jmock-parent</artifactId>
13-
<version>2.10.0-RC3</version>
13+
<version>2.11.0</version>
1414
</parent>
1515

1616
<properties>

jmock/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.jmock</groupId>
1212
<artifactId>jmock-parent</artifactId>
13-
<version>2.10.0-RC3</version>
13+
<version>2.11.0</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616

0 commit comments

Comments
 (0)