Commit 729db3e0 authored by Russell Dickenson's avatar Russell Dickenson

Merge branch 'selhorn-maventrouble' into 'master'

Docs: Added Maven troubleshooting steps

Closes #213122

See merge request gitlab-org/gitlab!37507
parents 042e4166 5b9f1b2e
...@@ -829,10 +829,25 @@ You can play around with the regex and try your version strings on [this regular ...@@ -829,10 +829,25 @@ You can play around with the regex and try your version strings on [this regular
## Troubleshooting ## Troubleshooting
### Useful Maven command line options ### Review network trace logs
There's some [maven command line options](https://maven.apache.org/ref/current/maven-embedder/cli.html) If you are having issues with the Maven Repository, you may want to review network trace logs.
which maybe useful when doing tasks with GitLab CI/CD.
For example, try to run `mvn deploy` locally with a PAT token and use these options:
```shell
mvn deploy \
-Dorg.slf4j.simpleLogger.log.org.apache.maven.wagon.providers.http.httpclient=trace \
-Dorg.slf4j.simpleLogger.log.org.apache.maven.wagon.providers.http.httpclient.wire=trace
```
CAUTION: **Caution:**
When you set these options, all network requests are logged and a large amount of output is generated.
### Useful Maven command-line options
There are some [Maven command-line options](https://maven.apache.org/ref/current/maven-embedder/cli.html)
that may be useful when performing tasks with GitLab CI/CD.
- File transfer progress can make the CI logs hard to read. - File transfer progress can make the CI logs hard to read.
Option `-ntp,--no-transfer-progress` was added in Option `-ntp,--no-transfer-progress` was added in
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment