Go to file
Martin Stockhammer 9e0f15c037 Adding profile for JDK11 2019-02-13 07:48:32 +01:00
redback-authentication no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
redback-authorization no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
redback-common Moving configuration projects into redback and update commons config version 2019-02-13 00:20:46 +01:00
redback-configuration no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
redback-data-management no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
redback-integrations Adding profile for JDK11 2019-02-13 07:48:32 +01:00
redback-keys no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
redback-policy no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
redback-rbac no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
redback-system no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
redback-users no more bundle as no one use that and this just stuck the build on Jenkins.... 2018-12-30 12:04:10 +10:00
src Changing to https urls and adding docu. 2018-11-22 20:47:52 +01:00
.gitattributes add .gitattributes file 2014-04-24 11:55:10 +10:00
.gitignore Ignore Netbeans artifacts 2016-09-07 00:30:14 +03:00
.travis.yml no openjdk8 2017-05-11 21:41:00 +10:00
Jenkinsfile Trying to fix JDK11 build on CI 2019-02-13 07:28:14 +01:00
README.adoc Changing to https urls and adding docu. 2018-11-22 20:47:52 +01:00
checkoutSite.sh Changes for site git migration 2018-11-11 10:02:27 +01:00
deploySite.sh Changing to https urls and adding docu. 2018-11-22 20:47:52 +01:00
git-sparse-checkout-pattern Changes for site git migration 2018-11-11 10:02:27 +01:00
pom.xml Adding profile for JDK11 2019-02-13 07:48:32 +01:00

README.adoc

Archiva Redback - Documentation
===============================
:toc:


== How to build and publish the pages for the archiva web content

This module and the children contain web content and project reports that can be published to the 
archiva web site: https://archiva.apache.org

The web content parts of this module and submodules are published to the path 

  /redback/core

=== Use the script

There is a shell script +deploySite.sh+ which you can run to generate the site check and publish to 
the remote repository. It works only on Linux, on other platforms you have to go the next section.

The script is interactive, it asks you to confirm the publish after generation of the staging part.

.Execute

  ./deploySite.sh 

All arguments are appended to the mvn calls.

=== Run the mvn steps manually

==== Building the pages

You need enough free disk space to publish the web content. The archiva web site repository is big, 
but the maven build will only checkout the necessary directories for this build (sparse checkout).

For all the commands you have to change to this archiva-modules directory:

  cd archiva/archiva-modules

.The following creates the site to the staging folder

  mvn clean site site:stage

The result can be checked in 

  archiva-modules/target/staging/ref/${project.version}

with your browser.

If you would like the use a local checkout of the archiva-web-content.git repository and not push directly
to the remote repository, you may add this parameter:

  -DsiteRepositoryUrl=scm:git:file:///${path-to-your-local-archiva}/archiva-web-content.git

where +${path-to-your-local-archiva}+ is the path where a bare clone of the archiva-web-content.git is stored.

NOTE: You cannot use +mvn site:run+ because this will place the submodules into the same folder and 
      overwrite each other.

==== Publish the pages

.This command publishes to the git repository

  mvn scm-publish:publish-scm

After publishing to the git repository the gitpubsub mechanism is transferring it to the HTTP server.

If you would like the use a local checkout of the archiva-web-content.git repository and not push directly
to the remote repository, you may add this parameter:

  -DsiteRepositoryUrl=scm:git:file:///${path-to-your-local-archiva}/archiva-web-content.git


=== Some notes about the build process

A sparse checkout of the git repository will be created in 

 .site-content

but only, if the directory +.site-content/.git+ does not exist.