-
Notifications
You must be signed in to change notification settings - Fork 237
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
Upgrade Maven from 3.8.1 to 3.9.6 #1729
Conversation
/** | ||
* Checksum extractors (none). | ||
*/ | ||
@Provides | ||
@Singleton | ||
Map<String, ChecksumExtractor> provideChecksumExtractors() { | ||
return Collections.emptyMap(); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Taken from the example in apache/maven-resolver#140.
@Provides | ||
ModelCacheFactory provideModelCacheFactory() { | ||
return new DefaultModelCacheFactory(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Taken from the example in apache/maven-resolver#319.
<maven.version>3.8.1</maven.version> | ||
<maven-resolver.version>1.6.2</maven-resolver.version> | ||
<maven.version>3.9.6</maven.version> | ||
<maven-resolver.version>1.9.18</maven-resolver.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not the latest version, but Maven 3.9.6 ships Maven Resolver 1.9.18, so keeping the versions aligned here.
See jenkinsci/maven-hpi-plugin#668. Adapting to apache/maven-resolver#140 and apache/maven-resolver#319. (Previously: #1153).