= Archiva =
 * https://archiva.apache.org/

Apache Archiva™ is an extensible repository management software that helps taking care of your own personal or enterprise-wide build artifact repository. It is the perfect companion for build tools such as [[Maven]], [[ApacheContinuum|Continuum]], and ANT.

== Archiva repository ==
 * https://archiva.apache.org/index.cgi
 * archiva standalone
 * wget http://mirrors.fe.up.pt/pub/apache/archiva/2.2.1/binaries/apache-archiva-2.2.1-bin.tar.gz
 * tar xvzf apache-archiva-2.2.1-bin.tar.gz
 * conf/jetty.xml change from 8080 to 8082
 * cp wrapper-linux-x86-32 wrapper
 * ./archiva start 
 * ./archiva status 
 * tail -f archiva.log
 * http://localhost:8082/
 * http://localhost:8082/#open-admin-create-box
 * username: admin
 * pass: ********** 
 * admin@example.org
 * validated true 
 * http://localhost:8082/repository/snapshots/
 * http://localhost:8082/repository/internal/
 * http://localhost:8082/repository/internal/com/example/artifactX/0.0.2/
~/.m2/settings.xml 
{{{
<settings>
  <servers>
    <server>
      <id>archiva.internal</id>
      <username>userx</username>
      <password>*********</password>
    </server>
    <server>
      <id>archiva.snapshots</id>
      <username>userx</username>
      <password>*********</password>
    </server>
  </servers>
</settings>
}}}