You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2016/04/16 04:49:31 UTC

directory-fortress-enmasse git commit: use the latest links

Repository: directory-fortress-enmasse
Updated Branches:
  refs/heads/master be7ffc421 -> fab31a74c


use the latest links


Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/commit/fab31a74
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/tree/fab31a74
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/diff/fab31a74

Branch: refs/heads/master
Commit: fab31a74c1f5d5de96605088c1496f0869678248
Parents: be7ffc4
Author: Shawn McKinney <sm...@apache.org>
Authored: Fri Apr 15 12:10:22 2016 -0500
Committer: Shawn McKinney <sm...@apache.org>
Committed: Fri Apr 15 12:10:22 2016 -0500

----------------------------------------------------------------------
 README-QUICKSTART.md | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/blob/fab31a74/README-QUICKSTART.md
----------------------------------------------------------------------
diff --git a/README-QUICKSTART.md b/README-QUICKSTART.md
index 5536a45..07067ed 100644
--- a/README-QUICKSTART.md
+++ b/README-QUICKSTART.md
@@ -39,7 +39,9 @@ This document contains instructions to deploy a pre-built Apache Fortress Rest i
 
 Minimum software requirements:
  * Apache Tomcat7++
- * Either OpenLDAP or ApacheDS configured for Apache Fortress
+ * Completed either:
+    * *SECTION 2. Apache Fortress Core and OpenLDAP Setup* in [README-QUICKSTART-SLAPD.md](https://github.com/apache/directory-fortress-core/blob/master/README-QUICKSTART-SLAPD.md)
+    * *SECTION 3. Apache Fortress Core Setup* in [README-QUICKSTART-APACHEDS.md](https://github.com/apache/directory-fortress-core/blob/master/README-QUICKSTART-APACHEDS.md)
 
 ___________________________________________________________________________________
 ## SECTION 2. Configure Tomcat
@@ -66,9 +68,11 @@ Set the java system properties in tomcat with the target ldap server's coordinat
 4. Download the fortress realm proxy jar into tomcat/lib folder:
 
   ```
-  wget http://repo.maven.apache.org/maven2/org/apache/directory/fortress/fortress-realm-proxy/1.0-RC42/fortress-realm-proxy-1.0-RC42.jar -P /usr/local/tomcat8/lib
+  wget http://repo.maven.apache.org/maven2/org/apache/directory/fortress/fortress-realm-proxy/1.0.0/fortress-realm-proxy-1.0.0.jar -P $TOMCAT_HOME/lib
   ```
 
+  where *TOMCAT_HOME* matches your target env.
+
 5. Restart tomcat for new settings to take effect.
 
 ___________________________________________________________________________________
@@ -85,13 +89,15 @@ ________________________________________________________________________________
 1. Download the fortress rest war into tomcat/webapps folder:
 
   ```
-  wget https://repository.apache.org/content/repositories/orgapachedirectory-1093/org/apache/directory/fortress/fortress-rest/1.0.0/fortress-rest-1.0.0.war
+  wget http://repo.maven.apache.org/maven2/org/apache/directory/fortress/fortress-rest/1.0.0/fortress-rest-1.0.0.war -P $TOMCAT_HOME/webapps
   ```
 
-3. Run the fortress junit tests
+  where *TOMCAT_HOME* matches your target env.
+
+2. Smoke test:
 
  ```
- mvn test -Dtest=FortressJUnitTest
+ mvn test -Dtest=EmTest
  ```
 
 ___________________________________________________________________________________