I'm having trouble using the flexbuilder goal to generate my
FlexBuilder project files.  I have a multi-module project; about 5
projects that are swc projects and one that is swf.  Some of the
projects depend on other projects.  When the libraryPathEntry elements
are generated in the .actionScriptProperties file for module
dependencies they are generated as if they were directly on my C:
drive no matter what. (ex: C:/resources/bin-debug/resources.swc)
FlexBuilder will complain that it cannot find the swc file in the
path.

Is this a problem with the plugin or my configuration?  The following
is my multi-module pom.xml:

<project
    xmlns="http://maven.apache.org/POM/4.0.0";
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
                      http://maven.apache.org/maven-v4_0_0.xsd";>
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.aeroint.pma</groupId>
    <artifactId>pma</artifactId>
    <name>Portable Maintenance Aid</name>
    <packaging>pom</packaging>

    <version>1.0-SNAPSHOT</version>

    <repositories>
        <repository>
            <name>Internal Nexus Repository</name>
            <id>internal-nexus-repository</id>
            <url>http://www.jeromebridgeconsulting.com/nexus/content/
groups/public</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <name>Internal Nexus Repository</name>
            <id>internal-nexus-repository</id>
            <url>http://www.jeromebridgeconsulting.com/nexus/content/
groups/public</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>

    <build>
        <sourceDirectory>src/main/flex</sourceDirectory>
        <testSourceDirectory>src/test/flex</testSourceDirectory>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <groupId>org.sonatype.flexmojos</groupId>
                <artifactId>flexmojos-maven-plugin</artifactId>
                <version>3.2.0</version>
                <extensions>true</extensions>
                <configuration>
                    <allowSourcePathOverlap>true</
allowSourcePathOverlap>
                    <enableM2e>true</enableM2e>
                </configuration>
            </plugin>
        </plugins>

    </build>

    <modules>
        <module>common</module>
        <module>logic</module>
        <module>main</module>
        <module>mock</module>
        <module>resources</module>
        <module>table</module>
        <module>wpm</module>
    </modules>

</project>

Any help is appreciated.

Regards,
Jerome Bridge

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Flex Mojos" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex-mojos?hl=en?hl=en

http://blog.flex-mojos.info/
-~----------~----~----~----~------~----~------~--~---

Reply via email to