diff --git a/src/site/xdoc/building.xml b/src/site/xdoc/building.xml index dd91badf51..5cdfa6b8e8 100644 --- a/src/site/xdoc/building.xml +++ b/src/site/xdoc/building.xml @@ -17,17 +17,16 @@ for their projects. They want to deploy a sample application, and that's about it (after all, all the reference documentation can be read online at http://acegisecurity.org). - In this case, execute:

+ Assuming you've already checked out the code from subversion, start up a command prompt and + execute the following commands from the directory containing the project source:

    -
    cd $ACEGI_SECURITY/core (or cd %ACEGI_SECURITY%/core on Windows)
    mvn install
    -
    cd $ACEGI_SECURITY/samples/contacts
    -
    mvn package
    +
    cd samples/contacts
    mvn jetty:run
-

This should build main framework library, build the sample application and run the "contacts" sample application - using the maven jetty plugin (JDK 1.5 or later is required to run the Jetty plugin). +

This should build the framework lirary jars, install them to your local maven repository and run the "contacts" + sample application using the maven jetty plugin (JDK 1.5 or later is required to run the Jetty plugin). You should then be able to point your browser at http://localhost:8080/contacts/ to use the application.