Labs Maven Repository

Labs got its own maven repository now:

How do I access the repo for my Maven project?

Add the repos to your project POM. Here's an example for the release repository: ```xml consol-labs-release http://labs.consol.de/maven/repository/ false true consol-labs-snapshots http://labs.consol.de/maven/snapshots-repository/ true interval:10080 false ```

How do I release to the repos?

Simply add this profile to your project, and activate it when deploying: ```xml dist-labs consol-labs-release scpexe://labs.consol.de/home/maven-repository/www/htdocs/repository consol-labs-snapshots scpexe://labs.consol.de/home/maven-repository/www/htdocs/snapshots-repository ``` Additionally, you'll have to modify your $HOME/.m2/settings.xml and configure the user for SSH deployment: ```xml consol-labs-release maven-repository consol-labs-snapshots maven-repository ``` Now you can simply deploy using Maven: ```bash mvn clean install deploy -Pdist-labs ``` Note: We only support SSH transport for now, using SSH authorized keys.