Skip to content

Commit

Permalink
Bump org.apache.commons:commons-parent from 70 to 71
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jun 22, 2024
1 parent ea94094 commit 6719429
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>70</version>
<version>71</version>
</parent>

<groupId>org.apache.bcel</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The <action> type attribute can be add,update,fix,remove.
<action type="update" dev="ggregory" due-to="Dependabot">Bump tests from org.assertj:assertj-core 3.25.3 to 3.26.0 #322.</action>
<action type="update" dev="ggregory" due-to="Dependabot">Bump tests from org.jetbrains.kotlin:kotlin-stdlib 1.9.23 to 2.0.0 #309, #318.</action>
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump tests from org.apache.commons:commons-collections4 4.4 to 4.5.0-M2.</action>
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 69 to 70.</action>
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 69 to 71.</action>
</release>
<release version="6.9.0" date="2024-04-21" description="Maintenance and bug fix release.">
<!-- ADD -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ public void visitModule(final Module obj) {
expected.add("org.junit.platform.launcher.PostDiscoveryFilter");
expected.add("org.junit.platform.launcher.TestExecutionListener");
assertEquals(expected, Arrays.asList(usedClassNames));
} else if (urlPath.contains("junit-platform-engine")) {
final List<String> expected = new ArrayList<>();
expected.add("org.junit.platform.engine.discovery.DiscoverySelectorIdentifierParser");
assertEquals(expected, Arrays.asList(usedClassNames));
} else if (urlPath.contains("/java.rmi/module-info.class")) {
final List<String> expected = new ArrayList<>();
expected.add("java.rmi.server.RMIClassLoaderSpi");
Expand Down

0 comments on commit 6719429

Please sign in to comment.