I have a Flex project that has a base pom, and two sub-pom's that
build a WAR and a SWF, structure is like below. The MyProjectSWF
pom.xml runs Flexmojos and builds the FlexBuilder artefacts
(.actionscriptproperties, .flexlibproperties, etc.). The artefacts
build fine, the problem is that I want to build them in the MyProject
folder and not the MyProjectSWF folder.

MyProject
|
|------- MyProjectWAR
|
|------- MyProjectSWF

The MyProject pom.xml is fairly simple.

<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";>

.... some stuff ...

        <profiles>
                <profile>
                        <id>default</id>
                        <activation>
                                <activeByDefault>true</activeByDefault>
                        </activation>
                        <modules>
                                <module>build/MyProjectWAR</module>
                                <module>build/MyProjectSWF</module>
                        </modules>
                </profile>
        </profiles>
</project>

The pom in MyProjectSWF looks like this.

<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";>
        . .  the usual . .
        <build>
                
<sourceDirectory>${basedir}/../../src/main/flex</sourceDirectory>
                <testSourceDirectory>${basedir}/../../src/test/flex</
testSourceDirectory>
                <resources>
                <resource>
                        
<directory>${basedir}/../../src/main/resources</directory>
                </resource>
                </resources>
        <plugins>
                        <plugin>
                                <groupId>org.sonatype.flexmojos</groupId>
                                <artifactId>flexmojos-maven-plugin</artifactId>
                                <version>${flex.mojo.version}</version>
                                <extensions>true</extensions>
                                <dependencies>
                                        <dependency>
                                                
<groupId>com.adobe.flex</groupId>
                                                
<artifactId>compiler</artifactId>
                                                
<version>${flex.sdk.version}</version>
                                                <type>pom</type>
                                        </dependency>
                                        <dependency>
                                                
<groupId>com.adobe.flex.compiler</groupId>
                                                <artifactId>license</artifactId>
                                                
<version>${flex.sdk.version}</version>
                                        </dependency>
                                </dependencies>

                                <configuration>
                                
<targetPlayer>${flex.targetplayer.version}</targetPlayer>
                                <sourcePaths>
                                <path>${basedir}/../../src/main/flex</path>
                                <path>${basedir}/../../src/main/locale</path>
                                <path>${basedir}/../../src/main/resources</
path>
                                <path>${basedir}/../../src/test/flex</path>
                                <path>${basedir}/../../src/test/resources</path>
                                </sourcePaths>
                                <sourceFile>ProcessWorkbenchFlexView.mxml</
sourceFile>
                                </configuration>
                        </plugin>
                </plugins>
        </build>
        <dependencies>
        . the usual . .
        </dependencies>
</project>

Can anyone tell me how I can tell my MyProjectSWF pom.xml to redirect
my Flexbuilder artefacts up two directories?

Thanks!

-- 
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

http://flexmojos.sonatype.org/

Reply via email to