Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ private void run() throws IOException {
+ " index this codebase. If you are using Gradle or Maven, please report an issue to"
+ " https://github.com/sourcegraph/scip-java and include steps to reproduce. If you"
+ " are using a different build tool, make sure that you have followed all of the"
+ " steps from"
+ " https://sourcegraph.github.io/scip-java/docs/manual-configuration.html");
+ " manual configuration steps.");
return;
}
options.reporter.startProcessing(shards.size());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ public class WriteDependencies extends DefaultTask {
"This will not prevent a SCIP index from being created, but the symbols\n"
+ "extracted from this project won't be available for cross-repository navigation,\n"
+ "as this project doesn't define any Maven coordinates by which it can be referred back"
+ " to.\n"
+ "See here for more details:"
+ " https://sourcegraph.github.io/scip-java/docs/manual-configuration.html#step-5-optional-enable-cross-repository-navigation";
+ " to.";

@TaskAction
public void printResolvedDependencies() throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
+ "extracted from this project won't be available for cross-repository"
+ " navigation,\n"
+ "as this project doesn't define any Maven coordinates by which it can be"
+ " referred back to.\n"
+ "See here for more details:"
+ " https://sourcegraph.github.io/scip-java/docs/manual-configuration.html#step-5-optional-enable-cross-repository-navigation\n");
+ " referred back to.\n");
} else {
for (Object root : sourceRoots) {
if (root instanceof String) {
Expand Down
Loading