fix publish url

This commit is contained in:
Rob Winch 2021-05-17 16:20:54 -05:00
parent eda38b8f88
commit 096a6586e7
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ public class PublishLocalPlugin implements Plugin<Project> {
@Override
public void execute(MavenArtifactRepository maven) {
maven.setName("local");
maven.setUrl(new File(project.getRootDir(), "publications/repos"));
maven.setUrl(new File(project.getRootProject().getBuildDir(), "publications/repos"));
}
});
}