Skip to content

Commit

Permalink
fix the artifactId. the old form is reserved specifically for maven's…
Browse files Browse the repository at this point in the history
… plugins

drop back a version
  • Loading branch information
evanchooly committed Aug 31, 2023
1 parent acb5c6b commit ef75322
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@
<parent>
<groupId>com.antwerkz.graven</groupId>
<artifactId>graven-parent</artifactId>
<version>0.4.1-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>integration-tests</artifactId>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</properties>

<build>
Expand Down
4 changes: 2 additions & 2 deletions mojo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.antwerkz.graven</groupId>
<artifactId>graven-parent</artifactId>
<version>0.4.1-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>maven-plugin</artifactId>
<artifactId>graven-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import org.codehaus.plexus.util.xml.Xpp3Dom
class GravenLifecycleParticipant : AbstractMavenLifecycleParticipant(), LogEnabled {
companion object {
val GROUPID = "com.antwerkz.graven"
val ARTIFACTID = "maven-plugin"
val ARTIFACTID = "graven-maven-plugin"
val defaults =
listOf(
TargetPlugin(
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.antwerkz.graven</groupId>
<artifactId>graven-parent</artifactId>
<version>0.4.1-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
<packaging>pom</packaging>

<description>
Expand Down

0 comments on commit ef75322

Please sign in to comment.