2011-08-25 02:13:46 -04:00
|
|
|
Apache Archiva
|
|
|
|
==============
|
|
|
|
|
2019-10-04 18:02:35 -04: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 02:13:46 -04:00
|
|
|
To get involved in Archiva development, contact dev@archiva.apache.org.
|
|
|
|
|
2020-05-08 16:58:00 -04: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 11:43:55 -05:00
|
|
|
|
2012-10-09 03:41:54 -04:00
|
|
|
Running from Source Code
|
2011-12-09 09:50:55 -05:00
|
|
|
========================
|
2012-10-09 03:41:54 -04:00
|
|
|
|
2011-12-09 09:50:55 -05: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 16:58:00 -04: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 02:02:23 -04:00
|
|
|
|
2011-12-09 09:50:55 -05:00
|
|
|
|
2012-02-27 13:17:01 -05:00
|
|
|
hit your browser: http://localhost:9091/archiva/index.html
|
|
|
|
|
2011-12-09 09:50:55 -05:00
|
|
|
Test Registration email
|
|
|
|
========================
|
2020-05-08 16:58:00 -04: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 09:50:55 -05:00
|
|
|
<tomcatContextXml>/Users/olamy/dev/tomcat-context-archiva-gmail.xml</tomcatContextXml>
|
2014-04-10 13:47:10 -04:00
|
|
|
```
|
2011-12-09 09:50:55 -05:00
|
|
|
This file must contains:
|
|
|
|
|
2020-05-08 16:58:00 -04:00
|
|
|
```xml
|
2011-12-09 09:50:55 -05: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 13:47:10 -04:00
|
|
|
```
|
2012-03-30 12:47:14 -04:00
|
|
|
|
2014-03-27 02:02:23 -04:00
|
|
|
Using with cassandra as metadata storage
|
|
|
|
========================
|
|
|
|
You can run the application using cassandra as storage.
|
2020-05-08 16:58:00 -04:00
|
|
|
|
|
|
|
```shell
|
2017-06-16 19:36:31 -04:00
|
|
|
sh ./jetty.sh -Pcassandra
|
2020-05-08 16:58:00 -04:00
|
|
|
```
|
2014-03-27 02:02:23 -04:00
|
|
|
|
|
|
|
Default cassandra host is localhost and port 9160
|
|
|
|
|
|
|
|
You can override using:
|
|
|
|
|
2020-05-08 16:58:00 -04:00
|
|
|
* `-Dcassandra.host=`
|
|
|
|
* `-Dcassandra.port=`
|
2014-03-27 02:02:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-30 12:47:14 -04:00
|
|
|
|