Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[MRESOLVER-411] Update to Maven 4.0.0-alpha-8 #350

Merged
merged 1 commit into from
Oct 25, 2023
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 @@ -457,13 +457,9 @@ protected VersionScheme getVersionScheme() {
protected Map<String, MetadataGeneratorFactory> getMetadataGeneratorFactories() {
// from maven-resolver-provider
HashMap<String, MetadataGeneratorFactory> result = new HashMap<>();
// result.put(PluginsMetadataGeneratorFactory.NAME, new PluginsMetadataGeneratorFactory());
// result.put(VersionsMetadataGeneratorFactory.NAME, new VersionsMetadataGeneratorFactory());
// result.put(SnapshotMetadataGeneratorFactory.NAME, new SnapshotMetadataGeneratorFactory());
// TODO: Fix this once MNG-7874 done and released as Maven 4.0.0-alpha-8
result.put("plugins", new PluginsMetadataGeneratorFactory());
result.put("versions", new VersionsMetadataGeneratorFactory());
result.put("snapshot", new SnapshotMetadataGeneratorFactory());
result.put(PluginsMetadataGeneratorFactory.NAME, new PluginsMetadataGeneratorFactory());
result.put(VersionsMetadataGeneratorFactory.NAME, new VersionsMetadataGeneratorFactory());
result.put(SnapshotMetadataGeneratorFactory.NAME, new SnapshotMetadataGeneratorFactory());
return result;
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<guiceVersion>6.0.0</guiceVersion>
<slf4jVersion>1.7.36</slf4jVersion>
<!-- used by supplier and demo only -->
<mavenVersion>4.0.0-alpha-7</mavenVersion>
<mavenVersion>4.0.0-alpha-8</mavenVersion>
<minimalMavenBuildVersion>[3.8.8,)</minimalMavenBuildVersion>
<minimalJavaBuildVersion>[11.0.16,)</minimalJavaBuildVersion>
<project.build.outputTimestamp>2023-10-10T21:40:45Z</project.build.outputTimestamp>
Expand Down