DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||
|---|---|---|
| ||
cd ${CTAKES_DEV_HOME}
svn checkout https://svn.apache.org/repos/asf/ctakes/trunk
export CTAKES_SRC_HOME=${CTAKES_DEV_HOME}/trunk
cd ${CTAKES_SRC_HOME} |
Subversion + Git
This is a setup where both svn source exists in the same folder as the git source.
| Code Block | ||
|---|---|---|
| ||
cd ${CTAKES_SRC_HOME}
git init .
git remote add apache https://github.com/apache/ctakes.git
git fetch apache
git pull apache trunk |
Rebase after svn checkin
...
git checkout trunk
svn update
git checkout .
git pull --rebase apache trunkBuild
The standard Maven command for building cTAKES is:
...