mirror of https://github.com/apache/archiva.git
Merge pull request #59 from ebarboni/testwinfix3
[MRM-2011] make getURIFromString compatible with windows path
This commit is contained in:
commit
276e0b1d19
|
@ -135,6 +135,9 @@ public class MavenRepositoryProvider implements RepositoryProvider {
|
|||
if (uriStr.startsWith("/")) {
|
||||
// only absolute paths are prepended with file scheme
|
||||
uri = new URI("file://" + uriStr);
|
||||
} else if (uriStr.contains(":\\")) {
|
||||
//windows absolute path drive
|
||||
uri = new URI("file:///" + uriStr.replaceAll("\\\\", "/"));
|
||||
} else {
|
||||
uri = new URI(uriStr);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue