Skip to content

Commit ee81880

Browse files
committed
Rename maven-plugin to scip-maven-plugin
1 parent 41d88ee commit ee81880

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.bazelignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.direnv/
22
examples/
3-
maven-plugin/target/
3+
scip-maven-plugin/target/
44
project/target/
55
scip-java/target/
66
scip-aggregator/target/

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ lazy val scip = project
166166
.dependsOn(scipShared)
167167

168168
lazy val mavenPlugin = project
169-
.in(file("maven-plugin"))
169+
.in(file("scip-maven-plugin"))
170170
.settings(
171-
moduleName := "maven-plugin",
171+
moduleName := "scip-maven-plugin",
172172
javaOnlySettings,
173173
libraryDependencies ++=
174174
Seq(

docs/manual-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,15 @@ plugin that can dump the project's dependencies in a format that scip-java under
173173
You can either use it directly from commandline:
174174

175175
```
176-
$ mvn com.sourcegraph:maven-plugin:@STABLE_VERSION@:sourcegraphDependencies
176+
$ mvn com.sourcegraph:scip-maven-plugin:@STABLE_VERSION@:sourcegraphDependencies
177177
```
178178

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

181181
```xml
182182
<plugin>
183183
<groupId>com.sourcegraph</groupId>
184-
<artifactId>maven-plugin</artifactId>
184+
<artifactId>scip-maven-plugin</artifactId>
185185
<version>@STABLE_VERSION@</version>
186186
<executions>
187187
<execution>

examples/maven-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
</plugin>
8383
<plugin>
8484
<groupId>com.sourcegraph</groupId>
85-
<artifactId>maven-plugin</artifactId>
85+
<artifactId>scip-maven-plugin</artifactId>
8686
<version>${scip-java.version}</version>
8787
<executions>
8888
<execution>

maven-plugin/src/main/java/com/sourcegraph/maven/DependencyWriterMojo.java renamed to scip-maven-plugin/src/main/java/com/sourcegraph/maven/DependencyWriterMojo.java

File renamed without changes.

maven-plugin/src/main/resources/META-INF/maven/plugin.template.xml renamed to scip-maven-plugin/src/main/resources/META-INF/maven/plugin.template.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<name>Sourcegraph scip-java Maven plugin</name>
77
<description>A Maven plugin which exports your project's dependencies in a format scip-java can understand</description>
88
<groupId>com.sourcegraph</groupId>
9-
<artifactId>maven-plugin</artifactId>
9+
<artifactId>scip-maven-plugin</artifactId>
1010
<version>@VERSION@</version>
1111
<goalPrefix>sourcegraph</goalPrefix>
1212
<isolatedRealm>false</isolatedRealm>

0 commit comments

Comments
 (0)