Gemfury Maven Mojo

A maven plugin for publishing debian artifacts into a gemfury repository

License

License

Categories

Categories

Maven Build Tools
GroupId

GroupId

uk.co.solong
ArtifactId

ArtifactId

gemfury-maven-plugin
Last Version

Last Version

0.0.10
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Gemfury Maven Mojo
A maven plugin for publishing debian artifacts into a gemfury repository
Project URL

Project URL

http://maven.apache.org
Source Code Management

Source Code Management

https://github.com/danielburrell/gemfury-maven-plugin

Download gemfury-maven-plugin

How to add to project

<plugin>
    <groupId>uk.co.solong</groupId>
    <artifactId>gemfury-maven-plugin</artifactId>
    <version>0.0.10</version>
</plugin>

Dependencies

compile (10)

Group / Artifact Type Version
org.apache.maven : maven-project jar 2.0.6
org.apache.maven : maven-plugin-api jar 3.2.5
org.apache.maven : maven-core jar 3.2.5
org.springframework : spring-web jar
commons-logging : commons-logging jar
org.apache.httpcomponents : httpclient jar 4.5
org.apache.httpcomponents : httpmime jar 4.5
commons-io : commons-io jar
org.apache.commons : commons-lang3 jar
org.springframework.batch : spring-batch-core jar

provided (1)

Group / Artifact Type Version
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.4

test (2)

Group / Artifact Type Version
junit : junit jar
org.apache.maven.plugin-testing : maven-plugin-testing-harness jar 3.3.0

Project Modules

There are no modules declared in this project.

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://[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!

Versions

Version
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1