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 2013/01/04 21:29:52 UTC

svn commit: r1429098 - in /jena/site/trunk/content/download: index.mdtext maven.mdtext

Author: andy
Date: Fri Jan  4 20:29:52 2013
New Revision: 1429098

URL: http://svn.apache.org/viewvc?rev=1429098&view=rev
Log:
Fix links and markdown

Modified:
    jena/site/trunk/content/download/index.mdtext
    jena/site/trunk/content/download/maven.mdtext

Modified: jena/site/trunk/content/download/index.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/download/index.mdtext?rev=1429098&r1=1429097&r2=1429098&view=diff
==============================================================================
--- jena/site/trunk/content/download/index.mdtext (original)
+++ jena/site/trunk/content/download/index.mdtext Fri Jan  4 20:29:52 2013
@@ -2,7 +2,7 @@ Title: Apache Jena Releases
 
 You can download official Apache Jena releases from here:
 
-  - [www.apache.org/dist/jena/](http://www.apache.org/dist/jena/)
+  - [http://www.apache.org/dist/jena/](http://www.apache.org/dist/jena/)
 
 Jena is packaged as:
 
@@ -12,7 +12,7 @@ Jena is packaged as:
 
 #### Maven
 
-See "[Using Jena with Apache Maven](download/maven.html)" for full details.
+See "[Using Jena with Apache Maven](maven.html)" for full details.
 
     <dependency>
       <groupId>org.apache.jena</groupId>

Modified: jena/site/trunk/content/download/maven.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/download/maven.mdtext?rev=1429098&r1=1429097&r2=1429098&view=diff
==============================================================================
--- jena/site/trunk/content/download/maven.mdtext (original)
+++ jena/site/trunk/content/download/maven.mdtext Fri Jan  4 20:29:52 2013
@@ -27,49 +27,49 @@ repositories to your <code>pom.xml</code
 This is how to specify in your pom.xml file the dependency
 on a version of Jena and ARQ stable releases:
 
-    <dependency>
-      <groupId>org.apache.jena</groupId>
-      <artifactId>apache-jena</artifactId>
-      <type>pom</type>
-      <version>X.Y.Z</version>
-    </dependency>
+      <dependency>
+        <groupId>org.apache.jena</groupId>
+        <artifactId>apache-jena</artifactId>
+        <type>pom</type>
+        <version>X.Y.Z</version>
+      </dependency>
 
 This will transitively resolve all the dependencies for you: `jena-core`,
 `jena-arq`, `jena-tdb` and `jena-iri` and their dependencies.  
 
-Note the use of `&lt;type>pom&lt/type>` above.  This does not work
+Note the use of `<type>pom</type>` above.  This does not work
 in all tools. An alternative is to depend on `jena-tdb`, which will pull
 in the other artifacts.
 
-   <dependency>
-      <groupId>org.apache.jena</groupId>
-      <artifactId>jena-tdb</artifactId>
-      <version>a.b.c</version>
-    </dependency>
+      <dependency>
+        <groupId>org.apache.jena</groupId>
+        <artifactId>jena-tdb</artifactId>
+        <version>a.b.c</version>
+      </dependency>
 
 The version number needs to be checked - it is not the same as apache-jena.
 
 Other modules need to added separately, for example:
 
-    <dependency>
-      <groupId>org.apache.jena</groupId>
-      <artifactId>jena-sdb</artifactId>
-      <version>x.y.z</version>
-    </dependency>
+      <dependency>
+        <groupId>org.apache.jena</groupId>
+        <artifactId>jena-sdb</artifactId>
+        <version>x.y.z</version>
+      </dependency>
 
 Please check for the latest versions.
 
 The full list of artifacts is:
 
- * jena-core
- * jena-arq
- * jena-iri
- * jena-tdb
-
- * jena-fuseki
- * jena-larq
- * jena-sdb
- * jena-parent
+* jena-core
+* jena-arq
+* jena-iri
+* jena-tdb
+
+* jena-fuseki
+* jena-larq
+* jena-sdb
+* jena-parent
 
 You can run <code>mvn dependency:tree</code> to print the dependency
 tree. 
@@ -89,7 +89,6 @@ to recent bug fixes, you should add the 
           <enabled>true</enabled>
         </snapshots>
       </repository>
-    </dependency>
 
 ### Build and install artifacts in your local Maven repository