Skip to content

Commit 74d331b

Browse files
authored
[MDEPLOY-316] Parent 42 and prerequisite 3.6.3 (#54)
Update parent to 42 and prerequisite to Maven 3.6.3 --- https://issues.apache.org/jira/browse/MDEPLOY-316
1 parent ac9c49d commit 74d331b

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/maven-verify.yml

+2
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ jobs:
2525
build:
2626
name: Verify
2727
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4
28+
with:
29+
jdk-distribution-matrix: '[ "zulu" ]'

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.maven.plugins</groupId>
2525
<artifactId>maven-plugins</artifactId>
26-
<version>41</version>
26+
<version>42</version>
2727
<relativePath />
2828
</parent>
2929

@@ -43,7 +43,7 @@ under the License.
4343
</contributors>
4444

4545
<prerequisites>
46-
<maven>3.2.5</maven>
46+
<maven>3.6.3</maven>
4747
</prerequisites>
4848

4949
<scm>

src/main/java/org/apache/maven/plugins/deploy/AbstractDeployMojo.java

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ protected void warnIfAffectedPackagingAndMaven(final String packaging) {
9999
* Creates resolver {@link RemoteRepository} equipped with needed whistles and bells.
100100
*/
101101
protected RemoteRepository getRemoteRepository(final String repositoryId, final String url) {
102+
// TODO: RepositorySystem#newDeploymentRepository does this very same thing!
102103
RemoteRepository result = new RemoteRepository.Builder(repositoryId, "default", url).build();
103104

104105
if (result.getAuthentication() == null || result.getProxy() == null) {

0 commit comments

Comments
 (0)