Mirror of Apache karaf Site

Clone this repo:
  1. 3ee0591 Update build instruction for Docker by JB Onofré · 2 weeks ago trunk
  2. 0adc60b Merge pull request #77 from rbowen/trunk by JB Onofré · 2 weeks ago
  3. 551651b fix: Fix privacy link and add Foundation link to footer by Rich Bowen · 2 weeks ago
  4. 5fc1196 Merge pull request #76 from apache/infrastructure-ruleset-bot/default-branch-protection by JB Onofré · 4 weeks ago
  5. 94e9ceb Set up default protection ruleset for default and release branches by The Apache Software Foundation · 4 weeks ago infrastructure-ruleset-bot/default-branch-protection

Apache Karaf Website

This project contains the Apache Karaf website.

Contribute

The concrete repository is on the svn but if you want to contribute, you have to clone the Github repository which is a mirror and provide a pull request with your changes. You can find more informations about how to contribute on the community page of the project (https://karaf.apache.org/community.html).

Clone:

git clone https://github.com/apache/karaf-site.git

Building

Karaf website uses jekyll to build (generate the HTML resources).

To install Jekyll, refer to https://jekyllrb.com/docs/

Once Jekyll is installed, you can build website using:

bundle exec jekyll serve

You can also use Jekyll Docker image to server:

docker run --rm --volume="$PWD:/srv/jekyll:Z" --publish 4000:4000 jekyll/jekyll jekyll serve

This command builds website and start the local Jekyll server on http://localhost:4000

NB: your local Jekyll installation might need additional modules required by Apache Karaf website. Just run bundle install to install these modules.

Building with Docker

docker run --rm --volume="$PWD:/srv/jekyll:Z" -it jekyll/jekyll jekyll build

Deploy

Build the site for production:

JEKYLL_ENV=production bundle exec jekyll build

You can also use Jekyll Docker image to build:

docker run --rm --volume="$PWD:/srv/jekyll:Z" jekyll/jekyll jekyll build

Package the war:

mvn clean install

You can test the war with Jetty embedded and visit http://localhost:8080/ :

mvn jetty:run

Deploy on scm

mvn install scm-publish:publish-scm