Corrections.

This commit is contained in:
Ben Alex 2004-12-26 04:14:41 +00:00
parent 6c1e2f23b2
commit d597d896c8
3 changed files with 26 additions and 4 deletions

View File

@ -59,6 +59,11 @@
Frank Nimphius' blog contains some comments on Acegi Security. See
our <a href="faq.html">FAQ</a> for additional JAAS comments.<br><br>
</li>
<li><b><a href="http://jakarta.apache.org/commons/attributes/faq.html">Anyone else using C-A (Commons Attributes)?</a></b>: Acegi Security made the list
of projects using Jakarta Commons Attributes. Our
<a href="/acegi-security-sample-attributes/index.html">Attributes Sample</a>
demonstrates C-A integration.<br><br>
</li>
</ul>
</body>
</html>

View File

@ -32,7 +32,7 @@
<p>This project uses <a href="http://maven.apache.org">Maven</a> as project manager
and build tool. We recommend you to install Maven 1.0.2 or greater before trying
the following. <b>Note there are workarounds at the bottom of this page.</b></p>
<p>To ancheckout Acegi Security from CVS, execute the following command on a
<p>To checkout Acegi Security from CVS, execute the following command on a
single line:</p>
<ol>
<pre>maven scm:checkout-project
@ -59,12 +59,28 @@
<a href="http://localhost:8080/acegi-security-sample-contacts-filter/">http://localhost:8080/acegi-security-sample-contacts-filter/</a>
(or whatever location is appropriate for your web container).</p>
<h2>Installing commons-attributes-plugin</h2>
<p>To properly integrate Commons Attributes with Maven (as required by
the <a href="/acegi-security-sample-attributes/index.html">Attributes Sample</a>),
you need to install an additional plugin.</b></p>
<p>To install the <code>commons-attributes-plugin</code>, execute the following commands:</p>
<ol>
<pre>cd $ACEGI_SECURITY/doc</pre>
<pre>maven plugin:download
-DgroupId=commons-attributes-plugin
-DartifactId=commons-attributes-plugin
-Dversion=2.1</pre>
</ol>
<p>The second (final) command should be executed on a single line.</p>
<h2>Building All JARs</h2>
<p>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:</p>
your local Maven repository, simple perform a CVS checkout and install the
<code>commons-attributes-plugin</code> (as detailed above), and then
execute:</p>
<ol>
<pre>cd $ACEGI_SECURITY/</pre>
<pre>cd $ACEGI_SECURITY/doc</pre>
<pre>maven multiproject:install</pre>
</ol>
<p>You can then check your <code>$HOME/.maven/repository/acegisecurity</code>

View File

@ -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 <i>should</i> be as simple as two commands. Have a look on the
<a href="building.html">Building with Maven</a> 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.<br><br>
Estimated time: 30 minutes - 2 hours.<br><br>