Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Clone the repository:

    Code Block
    themeEmacs
    git clone https://git-wip-us.apache.org/repos/asf/flex-utilities.git utilities

    After this the utilities/maveinzer directory should contain only one "src" directory.

  2. Currently the updated Mavenizer is located in the "developmaster" branch, so we have to switch to that first:  

    Code Block
    git checkout develop

    After this the utilities/mavenizer directory should contain 5 sub-directories. This way you know you are on the right branch.

  3. Build the Mavenizer using Maven: 

    Code Block
    cd utilities/mavenizer 
    mvn clean install

    You will see a lot of log output and hopefully at the end you should be able to read something like this: 

    Code Block
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 8.620s
    [INFO] Finished at: Sat Jul 12 12:41:42 CEST 2014
    [INFO] Final Memory: 40M/230M
    [INFO] ------------------------------------------------------------------------

    Now you have successfully built the mavenizer. The utilities/mavenizer/core/target directory should now contain 2 jar files "core-1.0.0-SNAPSHOT.jar" and "flex-sdk-converter-1.0.0-SNAPSHOT.jar".

...