Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2009-03-25 01:59:03 +0000
committerGreg Wilkins2009-03-25 01:59:03 +0000
commit24f7971e101c9f49ea9078e4486de01636d54d2f (patch)
tree78fcb4661f19d235bbfe5466ba16fa5ad56a52bc /BUILDING.txt
parent1b8ec6a4f0276d2dadd7123bd8774f807a803105 (diff)
downloadorg.eclipse.jetty.project-24f7971e101c9f49ea9078e4486de01636d54d2f.tar.gz
org.eclipse.jetty.project-24f7971e101c9f49ea9078e4486de01636d54d2f.tar.xz
org.eclipse.jetty.project-24f7971e101c9f49ea9078e4486de01636d54d2f.zip
building instructions
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@13 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'BUILDING.txt')
-rw-r--r--BUILDING.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/BUILDING.txt b/BUILDING.txt
new file mode 100644
index 0000000000..5eb765aab9
--- /dev/null
+++ b/BUILDING.txt
@@ -0,0 +1,25 @@
+
+
+Jetty is built with maven >= 2.0.8
+
+Currently there is not eclipse maven repository and we are not yet
+cleared to make releases to the public maven repositories. Thus in
+order to build jetty, you need to locally check out and build
+two modules used by the build system:
+
+ cd /my/work/directory
+ svn co http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty-parent/trunk/jetty-parent jetty-parent
+ cd jetty-parent
+ mvn install
+ cd ..
+ svn co svn+ssh://gwilkins@dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty-toolchain/trunk jetty-toolchain
+ cd jetty-toolchain
+ mvn install
+ cd ..
+
+You can then build this project:
+
+ cd /my/work/directory/jetty-7
+ mvn install
+
+

Back to the top