Skip to content

Instantly share code, notes, and snippets.

@antonarhipov
Created September 24, 2018 08:09
Show Gist options
  • Save antonarhipov/aa24fc134950568e92c9b3c102e1f061 to your computer and use it in GitHub Desktop.
Save antonarhipov/aa24fc134950568e92c9b3c102e1f061 to your computer and use it in GitHub Desktop.
blog-maven-jar-plugin
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>${project.vcs.branch}</classifier>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment