Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

git clone https://github.com/velo/flexmojos.git

 This command will clone the Github FlexMojos repository, which will make it available locally. git pull can be used to update your repository after you clone it. These commands are loosely equivalent to svn co and svn up (but not exactly).

Maven repository

FlexMojos depends on some Maven plugins only available at Sonatype public repository. You'll need to add the following to your Maven settings.xml file:

Code Block
<?xml version="1.0" encoding="UTF-8"?>
<settings>
 ...
  <profiles>
     <profile>
        <id>flex-mojos</id>
            <repositories>
                <!-- Required for regular plugin use until moved over to Maven central repo. -->
                <repository>
                    <id>flex-mojos-repository</id>
                    <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
                    <releases> <enabled>true</enabled> </releases>
                    <snapshots> <enabled>false</enabled> </snapshots>
                </repository>

                <!-- Required for building plugin from source. -->
                <repository>
                    <id>flex-mojos-internal-repository</id>
                    <url>http://repository.sonatype.org/content/groups/public/</url>
                    <releases> <enabled>true</enabled> </releases>
                    <snapshots> <enabled>true</enabled> </snapshots>
                </repository>
            </repositories>
            <pluginRepositories>
                <!-- Required for regular plugin use until moved over to Maven central repo. -->
                <pluginRepository>
                    <id>flex-mojos-plugin-repository</id>
                    <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
                    <releases> <enabled>true</enabled> </releases>
                    <snapshots> <enabled>false</enabled> </snapshots>
                </pluginRepository>

                <!-- Required for building plugin from source. -->
                <pluginRepository>
                    <id>flex-mojos-internal-plugins-repository</id>
                    <url>http://repository.sonatype.org/content/groups/public/</url>
                    <releases> <enabled>true</enabled> </releases>
                    <snapshots> <enabled>true</enabled> </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>

    <activeProfiles>
        <activeProfile>flex-mojos</activeProfile>
    </activeProfiles>
 ...
</settings>

In addition, there is one JAR (AIR development tools) that is packaged with the Flex SDK but is not open source. Because of this, Maven cannot host this artifact. To build the plugin from source, you will need to install this artifact into your own private repo:

Code Block
>mvn install:install-file -DgroupId=com.adobe.flex -DartifactId=adt -Dversion=3.2.0.3958 -Dpackaging=jar -Dfile=adt.jar

This JAR is bundled with the Flex SDK, which is freely available from Adobe's website: http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3sdk

First Build

FlexMojos uses itself to build ActionScript modules, but Maven doesn't handle that that well. To workaround this there is an extra profile defined on poms. Activate it by doing:
$ mvn clean install -P minimal

Note

Alternatively, if you enable snapshots on the flex-mojos-repository and flex-mojos-plugin-repository repositories (shown above, with <snapshots> <enabled>false</enabled> </snapshots> for both), you can skip this step and the mvn clean install command will download the latest 4.0-SNAPSHOT from the repository.

Regular Builds

After first build flexmojos can be built normally just like any maven project:
$ mvn clean install