You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2011/12/12 19:34:00 UTC

svn commit: r1213353 - in /incubator/jena/Jena2: ARQ/trunk/BUILD JenaTop/trunk/BUILD JenaTop/trunk/pom.xml TDB/trunk/BUILD jena/trunk/BUILD

Author: andy
Date: Mon Dec 12 18:34:00 2011
New Revision: 1213353

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

Added:
    incubator/jena/Jena2/JenaTop/trunk/BUILD
Modified:
    incubator/jena/Jena2/ARQ/trunk/BUILD
    incubator/jena/Jena2/JenaTop/trunk/pom.xml
    incubator/jena/Jena2/TDB/trunk/BUILD
    incubator/jena/Jena2/jena/trunk/BUILD

Modified: incubator/jena/Jena2/ARQ/trunk/BUILD
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/BUILD?rev=1213353&r1=1213352&r2=1213353&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/BUILD (original)
+++ incubator/jena/Jena2/ARQ/trunk/BUILD Mon Dec 12 18:34:00 2011
@@ -73,6 +73,6 @@ or to make them available to other projs
     mvn clean install
 
 -------------------------------------------------------
-Please do hestiate in contacting the Jena developers:
+If you have any questions, please do not hesitiate in contacting the Jena project:
   jena-users@incubator.apache.org
   jena-dev@incubator.apache.org

Added: incubator/jena/Jena2/JenaTop/trunk/BUILD
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/JenaTop/trunk/BUILD?rev=1213353&view=auto
==============================================================================
--- incubator/jena/Jena2/JenaTop/trunk/BUILD (added)
+++ incubator/jena/Jena2/JenaTop/trunk/BUILD Mon Dec 12 18:34:00 2011
@@ -0,0 +1,78 @@
+Apache Jena - single module instructions
+========================================
+
+This file contain the instructions for building this module from the
+source-release artifact.  The build instructions to create the whole of
+this Jena release are in the apache-jena-VER.zip file.
+
+The build process assumes the dependencies of this module are available in
+the local maven repository.
+
+jena-top -> jena-iri -> jena-core -> jena-arq -> apache-jena (the download).
+
+The instructions are the same for each jena-* module.
+
+We assume you are building "jena-zzz" in these instructions.
+
+== Download
+
+Download the "source-release" zip file, and also the associated
+signatures and checksums (file extensions .asc, .md5, .sha1).
+
+http://www.apache.org/dist/incubator/dist/
+
+== Verify the signature
+
+Get the public keys for the signature.  The file KEYS in the distribution
+area contains the keys of the release managers.  These only need to be
+imported once.  You can check the signatures at http://pgp.mit.edu/
+
+(For Gnu PrivacyGuard)
+
+    gpg --import < KEYS
+
+The file with extension .asc contains the 
+
+For the zip file of the zzz module:
+
+    gpg --verify jena-zzz-VER-incubator-source-release.zip.asc
+
+== Verify a checksum
+
+The .md5 and .sha1 files contain the MD5 and SHA1 checksum of the file
+respectively.  Calculate the checksum on the downloaded file 
+
+Exampale (linux):
+
+    md5sum jena-zzz-VER-incubator-source-release.zip
+
+== Unpack the file.
+
+   unzip -q jena-zzz-VER-incubator-source-release.zip
+
+will create a directory "jena-zzz-VER-incubator" with the files needed to
+recreate the distribution.
+
+   cd jena-zzz-VER-incubator
+
+== Ensure the dependecies are available
+
+Either build the previous modules in the dependency chain or get them from
+a public maven repository:
+
+    mvn dependency:resolve
+
+== Build
+
+To build the artifacts for this module:
+
+    mvn clean package
+
+or to make them available to other projscts on the local machine:
+
+    mvn clean install
+
+-------------------------------------------------------
+Please do not hesitate in contacting the Jena developers:
+  jena-users@incubator.apache.org
+  jena-dev@incubator.apache.org

Modified: incubator/jena/Jena2/JenaTop/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/JenaTop/trunk/pom.xml?rev=1213353&r1=1213352&r2=1213353&view=diff
==============================================================================
--- incubator/jena/Jena2/JenaTop/trunk/pom.xml (original)
+++ incubator/jena/Jena2/JenaTop/trunk/pom.xml Mon Dec 12 18:34:00 2011
@@ -41,9 +41,10 @@
     <ver.sdb>1.3.4-incubating-SNAPSHOT</ver.sdb>
 
     <!-- Versions of other things -->
-    <ver.junit>4.9</ver.junit>
+    <ver.xerces>2.10.0</ver.xerces>
     <ver.icu4j>3.4.4</ver.icu4j>
-    <ver.slf4j>1.6.1</ver.slf4j>
+    <ver.junit>4.9</ver.junit>
+    <ver.slf4j>1.6.4</ver.slf4j>
     <ver.log4j>1.2.16</ver.log4j>
 
     <!-- Other properties -->
@@ -59,13 +60,13 @@
      <dependency>
        <groupId>com.ibm.icu</groupId>
        <artifactId>icu4j</artifactId>
-       <version>3.4.4</version>
+       <version>${ver.icu4j}</version>
      </dependency>
 
      <dependency>
        <groupId>xerces</groupId>
        <artifactId>xercesImpl</artifactId>
-       <version>2.7.1</version>
+       <version>${ver.xerces}</version>
      </dependency>
 
      <dependency>

Modified: incubator/jena/Jena2/TDB/trunk/BUILD
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/TDB/trunk/BUILD?rev=1213353&r1=1213352&r2=1213353&view=diff
==============================================================================
--- incubator/jena/Jena2/TDB/trunk/BUILD (original)
+++ incubator/jena/Jena2/TDB/trunk/BUILD Mon Dec 12 18:34:00 2011
@@ -75,6 +75,6 @@ or to make them available to other projs
     mvn clean install
 
 -------------------------------------------------------
-Please do hestiate in contacting the Jena developers:
+If you have any questions, please do not hesitiate in contacting the Jena project:
   jena-users@incubator.apache.org
   jena-dev@incubator.apache.org

Modified: incubator/jena/Jena2/jena/trunk/BUILD
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/jena/trunk/BUILD?rev=1213353&r1=1213352&r2=1213353&view=diff
==============================================================================
--- incubator/jena/Jena2/jena/trunk/BUILD (original)
+++ incubator/jena/Jena2/jena/trunk/BUILD Mon Dec 12 18:34:00 2011
@@ -73,6 +73,6 @@ or to make them available to other projs
     mvn clean install
 
 -------------------------------------------------------
-Please do hestiate in contacting the Jena developers:
+If you have any questions, please do not hesitiate in contacting the Jena project:
   jena-users@incubator.apache.org
   jena-dev@incubator.apache.org