Skip to content

Commit

Permalink
[SUREFIRE-2210] - Restore ordering of additional class path elements
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlloyd committed Nov 10, 2023
1 parent 9b7ecf1 commit b4bdce0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2569,7 +2569,7 @@ private TestClassPath generateTestClasspath() throws MojoFailureException {

Map<String, Artifact> dependencyConflictIdsProjectArtifacts = classpathArtifacts.stream()
.collect(Collectors.toMap(Artifact::getDependencyConflictId, Function.identity()));
Set<String> additionalClasspathElements = new HashSet<>();
Set<String> additionalClasspathElements = new LinkedHashSet<>();
if (getAdditionalClasspathElements() != null) {
Arrays.stream(getAdditionalClasspathElements()).forEach(additionalClasspathElements::add);
}
Expand Down

0 comments on commit b4bdce0

Please sign in to comment.