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
2 changes: 1 addition & 1 deletion .bazelignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.direnv/
examples/
maven-plugin/target/
scip-maven-plugin/target/
project/target/
scip-java/target/
scip-aggregator/target/
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ lazy val scip = project
.dependsOn(scipShared)

lazy val mavenPlugin = project
.in(file("maven-plugin"))
.in(file("scip-maven-plugin"))
.settings(
moduleName := "maven-plugin",
moduleName := "scip-maven-plugin",
javaOnlySettings,
libraryDependencies ++=
Seq(
Expand Down
4 changes: 2 additions & 2 deletions docs/manual-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,15 +173,15 @@ plugin that can dump the project's dependencies in a format that scip-java under
You can either use it directly from commandline:

```
$ mvn com.sourcegraph:maven-plugin:@STABLE_VERSION@:sourcegraphDependencies
$ mvn com.sourcegraph:scip-maven-plugin:@STABLE_VERSION@:sourcegraphDependencies
```

Or add it to your build like any other maven plugin:

```xml
<plugin>
<groupId>com.sourcegraph</groupId>
<artifactId>maven-plugin</artifactId>
<artifactId>scip-maven-plugin</artifactId>
<version>@STABLE_VERSION@</version>
<executions>
<execution>
Expand Down
2 changes: 1 addition & 1 deletion examples/maven-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</plugin>
<plugin>
<groupId>com.sourcegraph</groupId>
<artifactId>maven-plugin</artifactId>
<artifactId>scip-maven-plugin</artifactId>
<version>${scip-java.version}</version>
<executions>
<execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<name>Sourcegraph scip-java Maven plugin</name>
<description>A Maven plugin which exports your project's dependencies in a format scip-java can understand</description>
<groupId>com.sourcegraph</groupId>
<artifactId>maven-plugin</artifactId>
<artifactId>scip-maven-plugin</artifactId>
<version>@VERSION@</version>
<goalPrefix>sourcegraph</goalPrefix>
<isolatedRealm>false</isolatedRealm>
Expand Down
Loading