You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2017/02/26 14:19:57 UTC

svn commit: r1784448 - /directory/site/trunk/content/api/user-guide/1.4-preparation-to-code.mdtext

Author: seelmann
Date: Sun Feb 26 14:19:57 2017
New Revision: 1784448

URL: http://svn.apache.org/viewvc?rev=1784448&view=rev
Log:
Min Java 7
Fix groupId
Add version placeholder
Typo

Modified:
    directory/site/trunk/content/api/user-guide/1.4-preparation-to-code.mdtext

Modified: directory/site/trunk/content/api/user-guide/1.4-preparation-to-code.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/api/user-guide/1.4-preparation-to-code.mdtext?rev=1784448&r1=1784447&r2=1784448&view=diff
==============================================================================
--- directory/site/trunk/content/api/user-guide/1.4-preparation-to-code.mdtext (original)
+++ directory/site/trunk/content/api/user-guide/1.4-preparation-to-code.mdtext Sun Feb 26 14:19:57 2017
@@ -24,7 +24,7 @@ Notice: Licensed to the Apache Software
 
 # 1.4 - Preparation to code
 
-The **Apache Directory LDAP API** requires **Java 6** JDK or higher. 
+The **Apache Directory LDAP API** requires **Java 7** or higher. 
 
 Secondly, you must download the **[API](http://directory.apache.org/api/downloads.html)**. This package contains the **LDAP API** plus all of its dependent jars (like _commons-lang_, _slf4j_...).
 
@@ -32,9 +32,10 @@ If you're using **Maven**, add the follo
 
     :::XML
     <dependency>
-      <groupId>org.apache.directory.shared</groupId>
+      <groupId>org.apache.directory.api</groupId>
       <artifactId>api-all</artifactId>
+      <version>${ldap-api-version}</version>
     </dependency>
 
 
-and all of its depedent jar files will be included automatically.  That's it, now you should be ready to code!
+and all of its dependent jar files will be included automatically.  That's it, now you should be ready to code!