apache / apache/maven-wrapper

[MWRAPPER-156] mvnw wrapper wget fail to download maven.zip...

Open
#324 0 comments 0 reactions 0 assignees View on GitHub
bug priority:major
Dominant language
Java
Stars
254
Forks
78
Avg merge
5h 26m
Merged PRs (30d)
2

Description

**[Mathieu CARBONNEAUX](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=info-apache@ch2o.info)** opened **[MWRAPPER-156](https://issues.apache.org/jira/browse/MWRAPPER-156?redirect=false)** and commented

i use alpine linux container (eclipse-temurin:17-jdk-alpine) to build my java project with maven wrapper...

and i'm behind proxy (i use .mvn/jvm.config file to set proxy)...

 

when upgraded maven wrapper (mvn wrapper:wrapper -Dmaven=3.8.1 and maven wrapper >=3.2.x and tryed many other higher version), they fail to download maven jar...

with error:

```
wget: server returned error: HTTP/1.1 500 handshakefailed
```

after many try i found that is related with version of wget on alpine... by default alpine linux use busybox version of wget... and busybox version has not all argument options are available vs original complete version...

 

i've resolved first by wrapp old version of maven 3.6.3 and wrapper 3.1.1 :

```
mvn wrapper:wrapper -Dmaven=3.6.3
```

but is not satisfesant... because i'm blocked with old version of maven...

 

i've also resolved by adding complet version of wget in alpine linux:

 

```
apk add wget
```

and is work fine with latest version of maven (3.9.x) ...

 

the berter solution while be to support busybox wget command on alpine linux.... this permits to have lower sized container to build maven wrapper project... and also work by default on alpine temurin...

 

---

**Affects:** 3.2.0, 3.3.0, 3.3.1, 3.3.2

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.