build.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0"?>
  2. <document>
  3. <properties>
  4. <title>Building Acegi</title>
  5. </properties>
  6. <body>
  7. <section name="Building Acegi">
  8. <p>
  9. TODO: Checkout the source from Sourceforge...
  10. </p>
  11. <subsection name="Maven Build">
  12. <p>
  13. The first thing to do if you want to use Maven is download and install it.
  14. The build has been tested with version 1-rc3 so use this or a later version if possible.
  15. </p>
  16. <p>
  17. One of the main differences between Maven and plain ant is that Maven manages
  18. external dependencies for your projects and (at least in theory) you should no
  19. longer have to store third-party jar files in your CVS tree. It maintains a local repository of
  20. versioned libraries and shares them between your Maven projects. If it can't find the necessary
  21. files there it will attempt to download them from the main Maven repository at www.ibiblio.org/maven.
  22. So to use the Maven build, you need to have a network connection available for the inital download of
  23. the project dependencies (and any others that Maven itself requires).
  24. </p>
  25. <p>
  26. Once you have Maven installed, building the project should be as simple as typing "maven jar"
  27. from the command line. Providing there are no failures in the test suite, this will create the
  28. project jar files in the "target" directory. For more information on using Maven, have a look at the
  29. <a href="http://maven.apache.org/">Maven web site</a>.
  30. </p>
  31. </subsection>
  32. </section>
  33. </body>
  34. </document>