Skip to content

Commit

Permalink
Fix accidentally changed dependency scope
Browse files Browse the repository at this point in the history
  • Loading branch information
ctubbsii committed Jul 24, 2024
1 parent 925d716 commit e936a01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ private static enum ProblemType {
};

private ClassPath getClassPath() throws DependencyResolutionRequiredException, IOException {
URL[] urls = project.getRuntimeClasspathElements().stream().map(TO_URL).toArray(URL[]::new);
URL[] urls = project.getCompileClasspathElements().stream().map(TO_URL).toArray(URL[]::new);
return ClassPath.from(new URLClassLoader(urls, null));
}

Expand Down

0 comments on commit e936a01

Please sign in to comment.