Skip to content

Commit b6fb3f0

Browse files
Bump org.apache.maven.shared:maven-shared-components from 43 to 45 (#278)
* Bump org.apache.maven.shared:maven-shared-components from 43 to 45 Bumps [org.apache.maven.shared:maven-shared-components](https://github.com/apache/maven-parent) from 43 to 45. - [Release notes](https://github.com/apache/maven-parent/releases) - [Commits](https://github.com/apache/maven-parent/commits) --- updated-dependencies: - dependency-name: org.apache.maven.shared:maven-shared-components dependency-version: '45' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix upgrade Signed-off-by: Olivier Lamy <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Olivier Lamy <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Olivier Lamy <[email protected]>
1 parent a99df26 commit b6fb3f0

4 files changed

Lines changed: 9 additions & 13 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.maven.shared</groupId>
2424
<artifactId>maven-shared-components</artifactId>
25-
<version>43</version>
25+
<version>45</version>
2626
<relativePath />
2727
</parent>
2828

src/site/xdoc/index.xml.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ version=\${project.version}</source>
215215
<td>
216216
If the manifest will contain these entries:
217217
<source>
218-
Created-By: Maven Archiver ${maven-archiver.version}
218+
Created-By: Maven Archiver ${project.version}
219219
Build-Jdk-Spec: ${java.specification.version}</source>
220220
Since 3.5.0, the default value of <code>Created-By</code> entry can be overridden using
221221
<a href="./apidocs/org/apache/maven/archiver/MavenArchiver.html">MavenArchiver.setCreatedBy(...)</a> API.<br />

src/test/java/org/apache/maven/archiver/ManifestConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void before() {
3333
}
3434

3535
@Test
36-
void XXX() {
36+
void classpathLayouttTypeSimple() {
3737
assertThat(manifestConfiguration.getClasspathLayoutType())
3838
.isEqualTo(ManifestConfiguration.CLASSPATH_LAYOUT_TYPE_SIMPLE);
3939
}

src/test/java/org/apache/maven/archiver/MavenArchiverTest.java

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,6 @@ static class ArtifactComparator implements Comparator<Artifact> {
7777
public int compare(Artifact o1, Artifact o2) {
7878
return o1.getArtifactId().compareTo(o2.getArtifactId());
7979
}
80-
81-
public boolean equals(Object o) {
82-
return false;
83-
}
8480
}
8581

8682
@ParameterizedTest
@@ -324,7 +320,7 @@ private MavenArchiver getMavenArchiver(JarArchiver jarArchiver) {
324320
}
325321

326322
@Test
327-
void testDashesInClassPath_MSHARED_134() throws Exception {
323+
void testDashesInClassPathMSHARED134() throws Exception {
328324
File jarFile = new File("target/test/dummyWithDashes.jar");
329325
JarArchiver jarArchiver = getCleanJarArchiver(jarFile);
330326

@@ -352,7 +348,7 @@ void testDashesInClassPath_MSHARED_134() throws Exception {
352348
}
353349

354350
@Test
355-
void testDashesInClassPath_MSHARED_182() throws Exception {
351+
void testDashesInClassPathMSHARED182() throws Exception {
356352
File jarFile = new File("target/test/dummy.jar");
357353
JarArchiver jarArchiver = getCleanJarArchiver(jarFile);
358354
MavenArchiver archiver = getMavenArchiver(jarArchiver);
@@ -630,7 +626,7 @@ private void deleteAndAssertNotPresent(File jarFile) {
630626
}
631627

632628
@Test
633-
void testDefaultClassPathValue_WithSnapshot() throws Exception {
629+
void testDefaultClassPathValueWithSnapshot() throws Exception {
634630
MavenSession session = getDummySession();
635631
MavenProject project = getDummyProjectWithSnapshot();
636632
File jarFile = new File("target/test/dummy.jar");
@@ -908,7 +904,7 @@ void shouldCreateArchiveWithSimpleClassPathLayoutUsingDefaults() throws Exceptio
908904
}
909905

910906
@Test
911-
void testMavenRepoClassPathValue_WithSnapshot() throws Exception {
907+
void testMavenRepoClassPathValueWithSnapshot() throws Exception {
912908
MavenSession session = getDummySession();
913909
MavenProject project = getDummyProjectWithSnapshot();
914910
File jarFile = new File("target/test/dummy.jar");
@@ -985,7 +981,7 @@ void testCustomClassPathValue() throws Exception {
985981
}
986982

987983
@Test
988-
void testCustomClassPathValue_WithSnapshotResolvedVersion() throws Exception {
984+
void testCustomClassPathValueWithSnapshotResolvedVersion() throws Exception {
989985
MavenSession session = getDummySession();
990986
MavenProject project = getDummyProjectWithSnapshot();
991987
File jarFile = new File("target/test/dummy.jar");
@@ -1024,7 +1020,7 @@ void testCustomClassPathValue_WithSnapshotResolvedVersion() throws Exception {
10241020
}
10251021

10261022
@Test
1027-
void testCustomClassPathValue_WithSnapshotForcingBaseVersion() throws Exception {
1023+
void testCustomClassPathValueWithSnapshotForcingBaseVersion() throws Exception {
10281024
MavenSession session = getDummySession();
10291025
MavenProject project = getDummyProjectWithSnapshot();
10301026
File jarFile = new File("target/test/dummy.jar");

0 commit comments

Comments
 (0)