From d597d896c856248ea8fe858cf961e134187e97b0 Mon Sep 17 00:00:00 2001 From: Ben Alex Date: Sun, 26 Dec 2004 04:14:41 +0000 Subject: [PATCH] Corrections. --- doc/xdocs/articles.html | 5 +++++ doc/xdocs/building.html | 22 +++++++++++++++++++--- doc/xdocs/suggested.html | 3 ++- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/doc/xdocs/articles.html b/doc/xdocs/articles.html index 8b283e8de1..3d63cb3a46 100644 --- a/doc/xdocs/articles.html +++ b/doc/xdocs/articles.html @@ -59,6 +59,11 @@ Frank Nimphius' blog contains some comments on Acegi Security. See our FAQ for additional JAAS comments.

+
  • Anyone else using C-A (Commons Attributes)?: Acegi Security made the list + of projects using Jakarta Commons Attributes. Our + Attributes Sample + demonstrates C-A integration.

    +
  • diff --git a/doc/xdocs/building.html b/doc/xdocs/building.html index a2117b4ca6..6b74a274fc 100644 --- a/doc/xdocs/building.html +++ b/doc/xdocs/building.html @@ -32,7 +32,7 @@

    This project uses Maven as project manager and build tool. We recommend you to install Maven 1.0.2 or greater before trying the following. Note there are workarounds at the bottom of this page.

    -

    To ancheckout Acegi Security from CVS, execute the following command on a +

    To checkout Acegi Security from CVS, execute the following command on a single line:

      maven scm:checkout-project
      @@ -59,12 +59,28 @@
       	http://localhost:8080/acegi-security-sample-contacts-filter/
       	(or whatever location is appropriate for your web container).

      +

      Installing commons-attributes-plugin

      +

      To properly integrate Commons Attributes with Maven (as required by + the Attributes Sample), + you need to install an additional plugin.

      +

      To install the commons-attributes-plugin, execute the following commands:

      +
        +
        cd $ACEGI_SECURITY/doc
        +
        maven plugin:download
        +    -DgroupId=commons-attributes-plugin
        +    -DartifactId=commons-attributes-plugin
        +    -Dversion=2.1
        +
      +

      The second (final) command should be executed on a single line.

      +

      Building All JARs

      Sometimes people are already using Acegi Security, and they just want to build the latest code from CVS. To build all artifacts (JARs) and install them into - your local Maven repository, simple execute:

      + your local Maven repository, simple perform a CVS checkout and install the + commons-attributes-plugin (as detailed above), and then + execute:

        -
        cd $ACEGI_SECURITY/
        +
        cd $ACEGI_SECURITY/doc
        maven multiproject:install

      You can then check your $HOME/.maven/repository/acegisecurity diff --git a/doc/xdocs/suggested.html b/doc/xdocs/suggested.html index b8183c78dc..7d79b3c915 100644 --- a/doc/xdocs/suggested.html +++ b/doc/xdocs/suggested.html @@ -39,7 +39,8 @@ we've gone to a lot of trouble to document what is involved. If you have a working Maven installation, it should be as simple as two commands. Have a look on the Building with Maven page, and follow the - "Checking Out from CVS" and "Building All JARs" steps. Of course, you can safely skip + "Checking Out from CVS", "Installing commons-attributes-plugin", and + "Building All JARs" steps. Of course, you can safely skip this step if you don't have time.

      Estimated time: 30 minutes - 2 hours.