Skip to content

Commit 327cd23

Browse files
committed
Polishing
1 parent 822ef52 commit 327cd23

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
java: [23, 24, 25]
36+
java: [24, 25]
3737
runs-on: ubuntu-latest
3838

3939
steps:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# AssertJ Eclipse Collections
1+
# AssertJ Eclipse Collections [![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
22

3-
[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
3+
[![CI](https://github.com/assertj/assertj/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/assertj/assertj/actions/workflows/main.yml?query=branch%3Amain)

pom.xml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@
2323
</license>
2424
</licenses>
2525

26+
<developers>
27+
<developer>
28+
<id>mattbertolini</id>
29+
<name>Matt Bertolini</name>
30+
<url>https://github.com/mattbertolini</url>
31+
</developer>
32+
</developers>
33+
2634
<scm>
2735
<connection>scm:git:https://github.com/assertj/assertj-eclipse-collections.git</connection>
2836
<developerConnection>scm:git:https://github.com/assertj/assertj-eclipse-collections.git</developerConnection>
@@ -33,7 +41,7 @@
3341
<assertj.version>3.27.3</assertj.version>
3442
<eclipse-collections.version>11.1.0</eclipse-collections.version>
3543
<!-- Dependency versions overriding -->
36-
<junit-jupiter.version>5.11.4</junit-jupiter.version>
44+
<junit-jupiter.version>5.12.1</junit-jupiter.version>
3745
</properties>
3846

3947
<dependencies>
@@ -44,12 +52,6 @@
4452
<version>${assertj.version}</version>
4553
</dependency>
4654
<!-- Provided -->
47-
<dependency>
48-
<groupId>org.eclipse.collections</groupId>
49-
<artifactId>eclipse-collections-api</artifactId>
50-
<version>${eclipse-collections.version}</version>
51-
<scope>provided</scope>
52-
</dependency>
5355
<dependency>
5456
<groupId>org.eclipse.collections</groupId>
5557
<artifactId>eclipse-collections</artifactId>
@@ -59,7 +61,6 @@
5961
<dependency>
6062
<groupId>org.opentest4j</groupId>
6163
<artifactId>opentest4j</artifactId>
62-
<version>1.3.0</version>
6364
<scope>provided</scope>
6465
<optional>true</optional>
6566
</dependency>

src/main/java/org/assertj/eclipse/collections/error/ShouldHaveDistinctSize.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import static java.lang.String.format;
1919

2020
/**
21-
* Creates an error message indicating that an assertion that verifies that a value have certain distinct size failed.
21+
* Creates an error message indicating that an assertion that verifies that a value has certain distinct size failed.
2222
*/
2323
public class ShouldHaveDistinctSize extends BasicErrorMessageFactory {
2424
/**

0 commit comments

Comments
 (0)