Add a repo manifest for KorAP
This should facilitate the handling of multiple repositories and
Gerrit workflows.
Change-Id: I06788e7ef4a283bb9f936cb094cfa121ee6690e1
diff --git a/Readme.md b/Readme.md
new file mode 100644
index 0000000..c41b2ff
--- /dev/null
+++ b/Readme.md
@@ -0,0 +1,16 @@
+# KorAP Repo Manifest
+
+This repository contains the files necessary for setting up
+KorAP using [Repo](https://source.android.com/setup/develop/repo), a tool built by the Android development team to manage
+multi-repository projects.
+
+## Getting started
+To set KorAP using repo, you first might need to [install repo](https://source.android.com/setup/build/downloading#installing-repo).
+Then you can fetch all KorAP repositories:
+
+```bash
+mkdir KorAP
+cd KorAP
+repo init -u https://korap.ids-mannheim.de/gerrit/KorAP/manifest
+repo sync
+```
diff --git a/default.xml b/default.xml
new file mode 100644
index 0000000..346a455
--- /dev/null
+++ b/default.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<manifest>
+ <remote name="github" fetch="https://github.com/" review="korap.ids-mannheim.de/gerrit" />
+ <remote name="private" fetch="http://klinux10:33300/" review="korap.ids-mannheim.de/gerrit"/>
+ <remote name="gitlab" fetch="ssh://git@gitlab.com" />
+
+ <default revision="refs/heads/master" remote="github" sync-c="true" sync-j="4" />
+
+ <project path="Kalamar" name="KorAP/Kalamar" />
+ <project path="Krill" name="KorAP/Krill" />
+ <project path="Koral" name="KorAP/Koral" />
+ <project path="KorAP-XML-Krill" name="KorAP/KorAP-XML-Krill" />
+ <project path="Kustvakt" name="KorAP/Kustvakt" />
+ <project path="KorAP-Vagrant" name="KorAP/KorAP-Vagrant" />
+ <project path="RKorAPClient" name="KorAP/RKorAPClient" remote="private"/>
+</manifest>