You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/site/markdown/remote-cache.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,6 +125,21 @@ Review `buildsdiff.xml` file and eliminate detected discrepancies. You can also
125
125
low level insights. See techniques to configure cache in [How-To](how-to.md) and troubleshooting of typical issues
126
126
in the section below.
127
127
128
+
If you are using a webdav remote server (which is the most easiest to use to create directories on a remote server), from Maven 3.9.1 and 4.0.0-alpha5, support of webdav has been removed per default.
129
+
You need to use the following extra configuration:
130
+
```bash
131
+
-Daether.connector.http.supportWebDav=true
132
+
OR
133
+
-Dmaven.resolver.transport=wagon
134
+
```
135
+
136
+
Or configure your remote with the following configuration (`dav:url`)
137
+
```xml
138
+
<remoteenabled="true">
139
+
<url>dav:http://your-buildcache-url</url>
140
+
</remote>
141
+
```
142
+
128
143
## Common issues
129
144
130
145
### Issue 1: Local checkout is with different line endings
0 commit comments