Skip to content

Commit

Permalink
Fix Maven repository URL (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
melix authored Mar 6, 2023
1 parent 61b9839 commit 12cf501
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private TaskProvider<FindBaselineTask> registerFindBaselineTask(Project project,
task.onlyIf(t -> binaryCompatibility.getEnabled().getOrElse(true));
task.usesService(downloader);
task.getDownloader().set(downloader);
task.getBaseRepository().convention("https://repo.maven.org/maven2");
task.getBaseRepository().convention("https://repo1.maven.org/maven2");
task.getGroupId().convention(providers.provider(() -> project.getGroup().toString()));
task.getArtifactId().convention(providers.provider(() -> artifactIdOf(project)));
task.getCurrentVersion().convention(providers.provider(() -> project.getVersion().toString()));
Expand Down

0 comments on commit 12cf501

Please sign in to comment.