Skip to content
Daniel Burrell edited this page Sep 3, 2015 · 7 revisions

gemfury-maven-plugin is a maven plugin for publishing private artifacts to gemfury repository during the deploy phase.

#Quickstart

Add the plugin to your maven pom. ##Maven

<build>
  <plugins>
    <plugin>
      <groupId>uk.co.solong</groupId>
      <artifactId>gemfury-maven-plugin</artifactId>
      <version>0.0.4</version>
      <executions>
        <execution>
          <id>execution1</id>
          <phase>deploy</phase>
          <configuration>
            <gemfuryUrl>https://[email protected]/youraddress/</gemfuryUrl>
            <ignoreHttpsCertificateWarnings>true</ignoreHttpsCertificateWarnings>
          </configuration>
          <goals>
            <goal>gemfury</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

Run the deploy goal like you normally would.

All done!


Developer Guide

The developer guide explains (to contributors) how to setup the environment for development and how to deploy this plugin itself to nexus repository.

Clone this wiki locally