Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 888 Bytes

README.md

File metadata and controls

33 lines (30 loc) · 888 Bytes

gemfury-maven-plugin Quickstart

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

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://SomeSecretToken@repo.fury.io/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!