Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
<version>1.11.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2024 Sonatype, Inc.
* Copyright (c) 2010, 2025 Sonatype, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -395,7 +395,7 @@ public void test414645_TestClasspathAttributeOnRuntimeJarDependencies() throws E
.getClasspathEntries();
assertEquals("" + Arrays.asList(classpathEntries), 3, classpathEntries.length);
//runtime dependencies
assertEquals("commons-beanutils-1.9.4.jar", classpathEntries[0].getPath().lastSegment());
assertEquals("commons-beanutils-1.11.0.jar", classpathEntries[0].getPath().lastSegment());
assertTest(classpathEntries[0]);
}

Expand All @@ -416,7 +416,7 @@ public void test414645_TestClasspathAttributeOnRuntimeProjectDependencies() thro
assertDoesntExportTests(classpathEntries[0]);

//transitive runtime dependency
assertEquals("commons-beanutils-1.9.4.jar", classpathEntries[1].getPath().lastSegment());
assertEquals("commons-beanutils-1.11.0.jar", classpathEntries[1].getPath().lastSegment());
assertTest(classpathEntries[1]);
}

Expand Down
Loading