Skip to content

Instantly share code, notes, and snippets.

@mirkosertic
Created November 26, 2016 13:47
Show Gist options
  • Select an option

  • Save mirkosertic/82cfa5e6e36cf9f5cc638d31a5a1bc2e to your computer and use it in GitHub Desktop.

Select an option

Save mirkosertic/82cfa5e6e36cf9f5cc638d31a5a1bc2e to your computer and use it in GitHub Desktop.
Remove Maven primary artifact
<plugin>
<groupId>org.codehaus.groovy.maven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>remove-primary-artefact</id>
<phase>package</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>project.getArtifact().setFile(null)</source>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment