Skip to content

Commit

Permalink
Merge 54cc113 into cdd2acb
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus committed May 19, 2017
2 parents cdd2acb + 54cc113 commit bc2efad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions pom.xml
Expand Up @@ -296,6 +296,10 @@
<target>${java.src.version}</target>
<testSource>${java.test.version}</testSource>
<testTarget>${java.test.version}</testTarget>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:deprecation</arg>
</compilerArgs>
</configuration>
</plugin>

Expand Down
Expand Up @@ -256,7 +256,7 @@ public T newInstance() {

private class NewInstanceClassloader extends URLClassLoader {
NewInstanceClassloader(File binaryOutputDirectory) throws MalformedURLException {
super(new URL[] { binaryOutputDirectory.toURL()});
super(new URL[] { binaryOutputDirectory.toURI().toURL()});
}

@Override
Expand Down

0 comments on commit bc2efad

Please sign in to comment.