jackrabbit-oak-0.6
[maven-release-plugin]  copy for tag jackrabbit-oak-0.6

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/oak/tags/jackrabbit-oak-0.6@1437905 13f79535-47bb-0310-9956-ffa450edef68
tree: 96aa8d613d0a8b70201411fb7c465ff8f8d6307e
  1. doc/
  2. oak-bench/
  3. oak-commons/
  4. oak-core/
  5. oak-http/
  6. oak-it/
  7. oak-jcr/
  8. oak-js/
  9. oak-lucene/
  10. oak-mk/
  11. oak-mk-api/
  12. oak-mk-perf/
  13. oak-mk-remote/
  14. oak-mongomk/
  15. oak-mongomk-perf/
  16. oak-parent/
  17. oak-run/
  18. oak-sling/
  19. .gitignore
  20. .travis.yml
  21. assembly.xml
  22. check-oak-release.sh
  23. LICENSE.txt
  24. NOTICE.txt
  25. pom.xml
  26. README.md
  27. RELEASE-NOTES.txt
README.md

======================================================= Jackrabbit Oak - the next generation content repository

Jackrabbit Oak is an effort to implement a scalable and performant hierarchical content repository for use as the foundation of modern world-class web sites and other demanding content applications.

The Oak effort is a part of the Apache Jackrabbit project. Apache Jackrabbit is a project of the Apache Software Foundation.

Oak is currently alpha-level software. Use at your own risk with no stability or compatibility guarantees.

Getting Started

To get started with Oak, build the latest sources with Maven 3 and Java 6 (or higher) like this:

mvn clean install

To enable all integration tests, including the JCR TCK, use:

mvn clean install -PintegrationTesting

Before committing changes or submitting a patch, please make sure that the above integration testing build passes without errors. If you like, you can enable integration tests by default by setting the OAK_INTEGRATION_TESTING environment variable.

MongoDB integration

Parts of the Oak build expects a MongoDB instance to be available for testing. By default a MongoDB instance running on localhost is expected, and the relevant tests are simply skipped if such an instance is not found. You can also configure the build to use custom MongoDB settings with the following properties (shown with their default values):

-Dmongo.host=127.0.0.1
-Dmongo.port=27017
-Dmongo.db=MongoMKDB
-Dmongo.db2=MongoMKDB2

Note that the configured test databases will be dropped by the test cases.

Components

The build consists of the following main components:

  • oak-parent - parent POM
  • oak-commons - shared utility code
  • oak-mk-api - MicroKernel API
  • oak-mk - default MicroKernel implementation
  • oak-mk-remote - MicroKernel remoting
  • oak-mongomk - MongoDB-based MicroKernel
  • oak-core - Oak repository API and implementation
  • oak-jcr - JCR binding for the Oak repository
  • oak-sling - integration with Apache Sling
  • oak-http - HTTP binding for Oak
  • oak-lucene - Lucene-based query index
  • oak-run - runnable jar packaging
  • oak-it - integration tests
    • oak-it/mk - integration tests for MicroKernel
    • oak-it/osgi - integration tests for OSGi
  • oak-bench - performance tests

License

(see LICENSE.txt for full license details)

Collective work: Copyright 2013 The Apache Software Foundation.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.