Skip to content

Commit

Permalink
#86 use triple slash to get file protocol working in URLs on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Feb 14, 2020
1 parent 5b8a1cf commit 8cff477
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/it/reserve-ports-with-urls/pom.xml
Expand Up @@ -22,7 +22,7 @@
</goals>
<configuration>
<urls>
<url>file://${project.basedir}/names2.txt</url>
<url>file:///${project.basedir}/names2.txt</url>
</urls>
</configuration>
</execution>
Expand All @@ -35,8 +35,8 @@
<configuration>
<outputFile>${project.build.directory}/ports.properties</outputFile>
<urls>
<url>file://${project.basedir}/names1.txt</url>
<url>file://${project.basedir}/names2.txt</url>
<url>file:///${project.basedir}/names1.txt</url>
<url>file:///${project.basedir}/names2.txt</url>
</urls>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion src/site/apt/usage.apt.vm
Expand Up @@ -494,7 +494,7 @@ releasedVersion.qualifier
<phase>process-resources</phase>
<configuration>
<urls>
<url>file://${project.basedir}/names1.txt</url>
<url>file:///${project.basedir}/names1.txt</url>
<url>classpath:port-names.txt</url>
</urls>
</configuration>
Expand Down

0 comments on commit 8cff477

Please sign in to comment.