Skip to content

Commit a07cace

Browse files
committed
fix issue #315
1 parent 4d17be9 commit a07cace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/fvarrui/javapackager/gradle/CopyDependencies.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected File doApply(Packager packager) {
3535
if (copyLibsTask == null) {
3636
copyLibsTask = project.getTasks().create("copyLibs", Copy.class);
3737
}
38-
copyLibsTask.from(project.getConfigurations().getByName("default"));
38+
copyLibsTask.from(project.getConfigurations().getByName("runtimeClasspath"));
3939
copyLibsTask.into(project.file(libsFolder));
4040
copyLibsTask.getActions().forEach(action -> action.execute(copyLibsTask));
4141

0 commit comments

Comments
 (0)