Skip to content

Instantly share code, notes, and snippets.

@vinimonteiro
Last active February 1, 2021 20:09
Show Gist options
  • Select an option

  • Save vinimonteiro/d2cbc7b0dfe2581ed29fc0def1efe06a to your computer and use it in GitHub Desktop.

Select an option

Save vinimonteiro/d2cbc7b0dfe2581ed29fc0def1efe06a to your computer and use it in GitHub Desktop.
Maven install plugin sample
.......
<dependency>
<groupId>com.vinimo</groupId>
<artifactId>utility-service</artifactId>
<version>0.0.1</version>
</dependency>
......
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>lib/utility-service-0.0.1-packaged.jar</file>
<groupId>com.vinimo</groupId>
<artifactId>utility-service</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
</plugin>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment