Add the repos to your project POM. Here's an example for the release repository:
```xml
consol-labs-releasehttp://labs.consol.de/maven/repository/falsetrueconsol-labs-snapshotshttp://labs.consol.de/maven/snapshots-repository/trueinterval:10080false
```
How do I release to the repos?
Simply add this profile to your project, and activate it when deploying:
```xml
dist-labsconsol-labs-releasescpexe://labs.consol.de/home/maven-repository/www/htdocs/repositoryconsol-labs-snapshotsscpexe://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-releasemaven-repositoryconsol-labs-snapshotsmaven-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.