Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Web Browsing of SVN

To browse via the web use the ViewVC interface:

Panel

http://svn.apache.org/viewvc/karaf/trunk/

Or to browse the source tree directly:

Panel

https://svn.apache.org/repos/asf/karaf/trunk/

Web Browing Using FishEye

A hearty thanks to Atlassian for providing FishEye hosting for Karaf. Below is the URL to browse the Subversion repo via FishEye:

Panel

http://fisheye6.cenqua.com/browse/karaf

Checking out from SVN

Code Block
svn co https://svn.apache.org/repos/asf/karaf/trunk karaf

Only project developers can commit to the SVN tree via this method. SSH must be installed on your client machine. Enter your site password when prompted.

SVN and Eclipse

See this article for getting started guides. Basically you need subclipse

Branches

We use the trunk for the next main release; then we use a branch for any bug fixes on the previous major release. You can look at all branches here

https://svn.apache.org/repos/asf/karaf/branches/

Sandbox

We have added a sandbox to host camel components that can be fostered into a quality and usage demand before moving into the trunk.

https://svn.apache.org/repos/asf/karaf/sandbox/

Using GIT-SVN

A git-svn mirror is available.

Code Block
PROJECT_NAME="karaf"
git clone git://git.apache.org/"$PROJECT_NAME"
cd "$PROJECT_NAME"/.git; wget http://git.apache.org/authors.txt; cd ..
git config svn.authorsfile ".git/authors.txt"
git svn init --prefix=origin/ --tags=tags --trunk=trunk --branches=branches https://svn.apache.org/repos/asf/"$PROJECT_NAME"
git svn rebase

Building the code

To then build the code see Building.