Results 1 to 3 of 3

Thread: How to build Spring Actionscript from source

  1. #1

    Default How to build Spring Actionscript from source

    Since Spring Actionscript is built with Ant and is available for checkout over svn, how can I easily build the latest code? What would be the pseudo code to download and compile the latest trunk?

    eg:
    Code:
    svn checkout "http://domain.of.repository/svn/path/to/trunk;
    cd project_basedir;
    ant build_swcs;
    Where is the main ant buildfile located for building the trunk?
    Last edited by rfkrocktk; Aug 13th, 2009 at 05:52 PM.

  2. #2
    Join Date
    Dec 2008
    Location
    Brussels
    Posts
    407

    Default Maven

    Right now I think its your best bet to build the trunk using Maven, there's a pom.xml directly under the trunk.

    The commands (in the proper order) would be:
    mvn clean
    mvn install
    mvn site
    mvn post-site

    this will build the libraries and generate the asdocs, site and reference documentation.

    hope this helps,

    cheers,

    Roland

  3. #3

    Default

    Thanks! And welcome back by the way!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •