|
Size: 1372
Comment:
|
← Revision 3 as of 2023-05-26 13:26:12 ⇥
Size: 1389
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 4: | Line 4: |
| 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. | 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 [[Java/ApacheMaven|Maven]], [[ApacheContinuum|Continuum]], and ANT. |
Archiva
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, Continuum, and ANT.
Archiva repository
- 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
- username: admin
- pass: **********
- validated true
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>