This is the GitHub for the eXist Native XML Database.
If you're looking to work with the eXist source code, you've come to the right place. If not, you're probably looking for the eXist Documentation.
If you're looking for help or discussion, visit the eXist community mailing lists or consider purchasing the eXist book from O'Reilly.
If you wish to work on the eXist source code we're now using Git (and GitHub) for our source code management. If you're not familiar with Git, we recommend this excellent online interactive tutorial.
eXist itself is written in Java 7. The build system is Apache Ant.
To build eXist:
- Checkout the Git Repository
- Execute Ant to compile eXist
$ git clone git@github.com:eXist-db/exist.git
$ cd exist
$ git checkout master
$ ./build.sh
NOTE:
In the above example, we switched the current (checked-out) branch from develop
to master
. We use the GitFlow for eXist process:
develop
is the current (and stable) work-in-progress (the next release)master
is the latest release The choice of which to use is up to you.
HINT: In the example above, we use the SSH form of the GitHub repo URL to clone eXist. However, if you're behind a HTTP proxy and your organisation doesn't allow outgoing SSH connections, try the HTTPS URL for our GitHub repo https://github.com/eXist-db/exist.git.
From here, you now have a compiled version of eXist that you may use just as you would an installed version of eXist, however it may be desirable to package this up for easy installation elsewhere. If you wish to create a simple ZIP distribution of eXist, run:
$ ./build.sh dist-zip
To build a full Installer for eXist, you'll need to have IzPack installed. Set your path to IzPack in exist/build.properties
and run:
$ ./build.sh installer
Otherwise, you may wish to deploy eXist into a Web Application Server as a WAR file. We provide a build for that, too:
$ ./build.sh dist-war
For more build options, see the eXist Build Documentation.
We welcome all contributions to eXist!
We strongly suggest that you join the eXist-development mailing list and also subscribe to the eXist-commits mailing list, so that you can collaborate with the eXist team and be kept up to date with changes to the codebase.
eXist uses the GitFlow branching model for development. Specifically, we're using the AVH Edition of GitFlow tools version.
If you're not familiar with GitFlow, check out some of the good tutorials linked in "Getting Started" of the GitFlow AVH Edition page. There's also a very good git-flow cheatsheet.
If you wish to contribute, the general approach is:
- Fork the repo on GitHub
git clone
your fork- Make sure you've GitFlow AVH Edition installed
- Run
git flow init
on the cloned repo using these settings. - Use Git Flow to start a hotfix or feature i.e.
git flow feature start my-feature
. - Do your stuff! :-)
- Commit to your repo. We like small, atomic commits that don't mix concerns.
- Do NOT finish the
hotfix
orfeature
with GitFlow. - Make sure your branch is based on the latest eXist develop branch before making a pull-request. This will ensure that we can easily merge in your changes. See Syncing a Fork.
- Push your hotfix or feature branch to your GitHub using GitFlow:
git flow feature publish my-feature
. - Send us a Pull Request on GitHub from your branch to our develop branch.
- Once the Pull Request is merged you can delete your branch, you need not finish or merge it, you will however want to sync your develop branch to bring back your changes. See Syncing a Fork.
Pull Requests are reviewed and tested before they're merged by the core development team. However, we have one golden rule, even within the core team: never merge your own pull request. This simple-but-important rule ensures that at least two people have considered the change.
Although the following are taken from our Developer Manifesto and Code Review Guide, the main things that get a Pull Request accepted are:
- Only change what you need to. If you must reformat code, keep it in a separate commit to any syntax or functionality changes.
- Test. If you fix something prove it, write a test that illustrates the issue before you fix the issue and validate the test. If you add a new feature it needs tests, so that we can understand its intent and try to avoid regressions in future as much as possible.
- Make sure the appropriate licence header appears at the top of your source code file. We use LGPL v2.1 for eXist and strongly encourage that, but ultimately any compatible OSI approved license without further restrictions may be used.
- Run the full eXist test suite. We don't accept code that causes regressions.
If you want to contribute a bug-fix, you need to consider whether this is a feature
or a hotfix
in GitFlow terminology.
Making the determination involves considering how the bug-fix is to be applied and how it is to be applied. First, you should carefully read the "Feature branches" and "Hotfix branches" sections from A successful Git branching model.
If you're still unsure, consider:
- The bug-fix is a hotfix if it is critical and needs to go into a very soon to be released revision version i.e. 2.1.n to address an immediate production issue.
- Otherwise it is a feature, i.e. its just standard development towards the next release of eXist.
Even for a bug-fix you should most probably use a feature
. If you're certain you want to create a hotfix
, please consider discussing first via the exist-development
mailing list.
- You work in features using GitFlow in your own fork of our repo.
- If you want to push your feature to your fork before you have finished it locally, i.e. for the purposes of backup or collaboration, you can use
git flow feature publish my-feature
. - You will only ever send Pull Requests between your 'develop' branch and our 'develop' branch. i.e. finished features.
- If you follow the details above and make it easy for us to accept your Pull Requests, they will get accepted and merged quickly!
Your fork will eventually become out of sync with the upstream repo as others contribute to eXist. To pull upstream changes into your fork, you have two options:
- Merging.
- Rebasing.
Rebasing leads to a cleaner revision history which is much easier to follow and is our preferred approach. However, git rebase
is a very sharp tool and must be used with care. For those new to rebase, we would suggest having a backup of your local (and possibly remote) git repos before continuing. Read on to learn how to sync using rebase.
Lets say that you have a fork of eXist's GitHub repo, and you have been working in your feature branch called my-feature
for sometime, you are happy with how your work is progressing, but you want to sync so that your changes are based on the latest and greatest changes from eXist. The way to do this using git rebase
is as follows:
-
If you have any un-committed changes you need to stash them using:
git stash save "changes before rebase"
. -
If you have not added eXist's GitHub as an upstream remote, you need to do so by running
git remote add upstream https://github.com/exist-db/exist.git
. You can view your existing remotes, by runninggit remote -v
. -
You need to fetch the latest changes from eXist's GitHub:
git fetch upstream
. This will not yet change your local branches in any way. -
You should first sync your
develop
branch with eXist'sdevelop
branch. As you always work in feature branches, this should a simple fast-forward by running:git checkout develop
and thengit rebase upstream/develop
. -
If all goes well in (4) then you can push your
develop
branch to your remote server (e.g. GitHub) withgit push origin develop
. -
You can then replay your work in your feature branch
my-feature
atop the lastest changes from the develop branch by running:git checkout feature/my-feature
and thengit rebase develop
. -
Should you encounter any conflicts during (5) you can resolve them using
git mergetool
and thengit rebase --continue
. -
If all goes well in (5), and take care to check your history is correct with
git log
, then you can force push yourfeature/my-feature
branch to your remote server (e.g. GitHub) withgit push -f origin feature/my-feature
. NOTE the reason you need to use the-f
to force the push is because the commit ids of your revisions will have changed after the rebase.
Note that it is worth syncing your branches that you are working on relatively frequently to prevent any large rebases which could lead to resolving many conflicting changes where your branch has diverged over a long period of time.
When we started working with the eXist repo we needed to configure it for GitFlow:
$ git flow init
Which branch should be used for bringing forth production releases?
- master
Branch name for production releases: [master]
Branch name for "next release" development: [develop]
How to name your supporting branch prefixes?
Feature branches? [feature/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? [] eXist-
Hooks and filters directory? [.git/hooks]
A new develop
branch is created, and checked out.
Verify it like this:
$ git status
# On branch develop
As we have already started with GitFlow, when you run git flow init
, you'll get slightly different prompts--but the same answers apply!
You must use the following settings:
$ git flow init
Which branch should be used for bringing forth production releases?
- develop
Branch name for production releases: [] master
Which branch should be used for integration of the "next release"?
- develop
Branch name for "next release" development: [develop]
How to name your supporting branch prefixes?
Feature branches? [feature/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? [] eXist-
Hooks and filters directory? [.git/hooks]