You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by ca...@apache.org on 2011/11/22 15:09:27 UTC

svn commit: r1205000 - /incubator/jena/Jena2/JenaDist/trunk/BUILD.txt

Author: castagna
Date: Tue Nov 22 14:09:26 2011
New Revision: 1205000

URL: http://svn.apache.org/viewvc?rev=1205000&view=rev
Log: (empty)

Added:
    incubator/jena/Jena2/JenaDist/trunk/BUILD.txt   (with props)

Added: incubator/jena/Jena2/JenaDist/trunk/BUILD.txt
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/JenaDist/trunk/BUILD.txt?rev=1205000&view=auto
==============================================================================
--- incubator/jena/Jena2/JenaDist/trunk/BUILD.txt (added)
+++ incubator/jena/Jena2/JenaDist/trunk/BUILD.txt Tue Nov 22 14:09:26 2011
@@ -0,0 +1,56 @@
+Apache Jena Distribution - Build Instructions
+=============================================
+
+Requirements
+------------
+
+ - Java 1.6
+ - Apache Maven 2.2.1 or greater
+
+
+Building
+--------
+
+Expected directories layout:
+
+  ARQ/
+  IRI/
+  jena-dist/ (this module)
+  jena-larq/
+  Jena2/
+  JenaTop/
+
+This is specified in the pom.xml file in the <modules> section:
+
+  <modules>
+    <module>../JenaTop</module>
+    <module>../Jena2</module>
+    <module>../IRI</module>
+    <module>../ARQ</module>
+    <module>../jena-larq</module>
+    <module>../TDB</module>
+  </modules>
+
+The expected layout can be obtained doing:
+
+  mkdir jena
+  cd jena
+  svn co https://svn.apache.org/repos/asf/incubator/jena/Jena2/JenaTop/trunk JenaTop
+  svn co https://svn.apache.org/repos/asf/incubator/jena/Jena2/jena/trunk Jena2
+  svn co https://svn.apache.org/repos/asf/incubator/jena/Jena2/IRI/trunk IRI
+  svn co https://svn.apache.org/repos/asf/incubator/jena/Jena2/ARQ/trunk ARQ
+  svn co https://svn.apache.org/repos/asf/incubator/jena/Jena2/LARQ/trunk jena-larq
+  svn co https://svn.apache.org/repos/asf/incubator/jena/Jena2/TDB/trunk TDB
+  svn co https://svn.apache.org/repos/asf/incubator/jena/Jena2/JenaDist/trunk jena-dist
+  cd jena-dist
+  mvn -Papache-release package
+  ls -la target/
+  
+
+Use Maven as usual (with the -Papache-release profile):
+
+  mvn -Papache-release package
+  mvn -Papache-release clean install
+  mvn -Papache-release deploy
+  ...
+

Propchange: incubator/jena/Jena2/JenaDist/trunk/BUILD.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain