totomz / mvn-repo

A "maven" repository for compiled versions of my libraries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A "maven" repository for compiled versions of my libraries. Artifacts are published in the branch gh-pages!

Usage

Simply add this repo to your

<repositories>
  <repository>
    <id>totomz-github</id>
    <name>Totomz  maven repo</name>
    <url>http://totomz.github.com/mvn-repo/repository/</url>
  </repository>
</repositories>

Deploy artifacts

  1. clone this repo and git fetch && git checkout -b gh-pages origin/gh-pages
  2. Set the distribution management in the pom
<distributionManagement>
  <repository>
    <id>gh-pages</id>
    <url>file:///${mvn-repo-dir}/repository/</url>
  </repository>
</distributionManagement>
  1. deploy the artifact using mvn deploy
  2. git commit -a -m "" && git push

About

A "maven" repository for compiled versions of my libraries

License:Other