2011-08-25 06:13:46 +00:00
|
|
|
Apache Archiva
|
|
|
|
==============
|
|
|
|
|
2019-10-05 00:02:35 +02:00
|
|
|
Licensing information
|
|
|
|
=====================
|
|
|
|
|
|
|
|
Archiva is developed under the Apache License Version 2.0
|
|
|
|
|
|
|
|
Please notice, the download distribution includes third party Java libraries that are not covered by Apache license, namely:
|
|
|
|
- Common Development and Distribution License (CDDL)
|
|
|
|
- Mozilla License
|
|
|
|
- Day Specification License
|
|
|
|
|
|
|
|
|
|
|
|
Archiva Development
|
|
|
|
===================
|
|
|
|
|
2011-08-25 06:13:46 +00:00
|
|
|
To get involved in Archiva development, contact dev@archiva.apache.org.
|
|
|
|
|
2020-05-08 22:58:00 +02:00
|
|
|
NOTE: you will need a `MAVEN_OPTS` with some memory setup as sample:
|
|
|
|
`export MAVEN_OPTS="-Xmx768m -Xms768m -XX:MaxPermSize=256m"`
|
2011-12-10 16:43:55 +00:00
|
|
|
|
2012-10-09 07:41:54 +00:00
|
|
|
Running from Source Code
|
2011-12-09 14:50:55 +00:00
|
|
|
========================
|
2012-10-09 07:41:54 +00:00
|
|
|
|
2011-12-09 14:50:55 +00:00
|
|
|
As webapp js is in dev and won't probably be released soon, the module is not activated by default and it's included only in a profile
|
2020-05-08 22:58:00 +02:00
|
|
|
`mvn jetty:run -pl :archiva-webapp -am` (to save fingers :-) use `sh ./jetty.sh` ) (debug with `sh ./jetty-debug.sh`, debug port is 8000)
|
2014-03-27 06:02:23 +00:00
|
|
|
|
2011-12-09 14:50:55 +00:00
|
|
|
|
2012-02-27 18:17:01 +00:00
|
|
|
hit your browser: http://localhost:9091/archiva/index.html
|
|
|
|
|
2011-12-09 14:50:55 +00:00
|
|
|
Test Registration email
|
|
|
|
========================
|
2020-05-08 22:58:00 +02:00
|
|
|
Redback can send email on registration. By default the mail jndi si configured to use localhost.
|
|
|
|
You can use your gmail accout for testing purpose.
|
|
|
|
In your **~/.m2/settings.xml** file add a property with a path to a tomcat context file:
|
|
|
|
```xml
|
2011-12-09 14:50:55 +00:00
|
|
|
<tomcatContextXml>/Users/olamy/dev/tomcat-context-archiva-gmail.xml</tomcatContextXml>
|
2014-04-10 19:47:10 +02:00
|
|
|
```
|
2011-12-09 14:50:55 +00:00
|
|
|
This file must contains:
|
|
|
|
|
2020-05-08 22:58:00 +02:00
|
|
|
```xml
|
2011-12-09 14:50:55 +00:00
|
|
|
<Context path="/archiva">
|
|
|
|
<Resource name="jdbc/users" auth="Container" type="javax.sql.DataSource"
|
|
|
|
username="sa"
|
|
|
|
password=""
|
|
|
|
driverClassName="org.apache.derby.jdbc.EmbeddedDriver"
|
|
|
|
url="jdbc:derby:${catalina.base}/target/database/users;create=true"
|
|
|
|
/>
|
|
|
|
<Resource name="mail/Session" auth="Container"
|
|
|
|
type="javax.mail.Session"
|
|
|
|
mail.smtp.host="smtp.gmail.com"
|
|
|
|
mail.smtp.port="465"
|
|
|
|
mail.smtp.auth="true"
|
|
|
|
mail.smtp.user="your gmail account"
|
|
|
|
password="your gmail password"
|
|
|
|
mail.smtp.starttls.enable="true"
|
|
|
|
mail.smtp.socketFactory.class="javax.net.ssl.SSLSocketFactory"/>
|
|
|
|
|
|
|
|
</Context>
|
2014-04-10 19:47:10 +02:00
|
|
|
```
|
2012-03-30 16:47:14 +00:00
|
|
|
|
2014-03-27 06:02:23 +00:00
|
|
|
Using with cassandra as metadata storage
|
|
|
|
========================
|
|
|
|
You can run the application using cassandra as storage.
|
2020-05-08 22:58:00 +02:00
|
|
|
|
|
|
|
```shell
|
2017-06-17 09:36:31 +10:00
|
|
|
sh ./jetty.sh -Pcassandra
|
2020-05-08 22:58:00 +02:00
|
|
|
```
|
2014-03-27 06:02:23 +00:00
|
|
|
|
|
|
|
Default cassandra host is localhost and port 9160
|
|
|
|
|
|
|
|
You can override using:
|
|
|
|
|
2020-05-08 22:58:00 +02:00
|
|
|
* `-Dcassandra.host=`
|
|
|
|
* `-Dcassandra.port=`
|
2014-03-27 06:02:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-30 16:47:14 +00:00
|
|
|
|