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
[WAGON-583] WebDavWagon and tests now adhere to RFC 4918
- Handle 409 Conflict status when parent collections don't exist
- Handle redirects on MKCOL operations
- Accept 200 OK status for already-existing collections
- Fix tests to use WebDAV PROPFIND instead of filesystem checks
Copy file name to clipboardExpand all lines: wagon-providers/wagon-webdav-jackrabbit/src/main/java/org/apache/maven/wagon/providers/webdav/WebDavWagon.java
Copy file name to clipboardExpand all lines: wagon-providers/wagon-webdav-jackrabbit/src/test/java/org/apache/maven/wagon/providers/webdav/WebDavWagonTest.java
+19-21Lines changed: 19 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -137,34 +137,35 @@ public void testMkdirs() throws Exception {
137
137
wagon.connect(testRepository, getAuthInfo());
138
138
139
139
try {
140
-
Filedir = getRepositoryDirectory();
141
-
142
-
// check basedir also doesn't exist and will need to be created
0 commit comments