Adjust the checkstyle location to play nice on Win

Removed the file:// prefix on the checkstyle config location, this is
needed for the site build to work on Windows. I've tested this on Linux,
though not as thouroughly.
This commit is contained in:
Bryce Van Dyk 2015-09-12 16:42:47 +12:00
parent e2bc9336f9
commit 8c9e4ff39a
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@
</reportSets>
<configuration>
<linkXRef>false</linkXRef>
<configLocation>file://${project.basedir}/../src/checkstyle/checkstyle.xml</configLocation>
<configLocation>${project.basedir}/../src/checkstyle/checkstyle.xml</configLocation>
<!--<sourceDirectories> <sourceDirectory> ${project.basedir}/../hapi-fhir-base/src/main/java
</sourceDirectory> </sourceDirectories> -->
</configuration>

View File

@ -787,7 +787,7 @@
</dependency>
</dependencies>
<configuration>
<configLocation>file://${project.basedir}/src/checkstyle/checkstyle.xml</configLocation>
<configLocation>${project.basedir}/src/checkstyle/checkstyle.xml</configLocation>
</configuration>
</plugin>
<plugin>