Hi, how do I use the new version?
I have the following pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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>
<repositories>
<repository>
<id>flex-mojos-repository</id>
<url>http://repository.sonatype.org/content/repositories/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>flex-mojos-repository</id>
<url>http://repository.sonatype.org/content/repositories/</url>
</pluginRepository>
</pluginRepositories>
<parent>
<groupId>info.flex-mojos</groupId>
<artifactId>flex-super-pom</artifactId>
<version>2.0M10</version>
</parent>
<groupId>org.fairweatherpunk.www</groupId>
<artifactId>FairWeathertGalleryAdmin</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>swf</packaging>
<prerequisites>
<maven>2.0.9</maven>
</prerequisites>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>tests</testSourceDirectory>
<plugins>
<plugin>
<groupId>info.flex-mojos</groupId>
<artifactId>flex-compiler-mojo</artifactId>
<configuration>
<targetPlayer>10.0.0</targetPlayer>
<sourcePaths>
<path>libs/FWP_AS3Classes</path>
<path>src</path>
</sourcePaths>
<!--debug>true</debug>
<testRunnerTemplate>${basedir}/tests/org/fwg/tests/
DebugTestRunner.vm</testRunnerTemplate>
<defaultSizeWidth>800</defaultSizeWidth>
<defaultSizeHeight>600</defaultSizeHeight-->
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>playerglobal</artifactId>
<version>10-3.2.0.3958</version>
<type>swc</type>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>flex-framework</artifactId>
<version>3.2.0.3958</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.puremvc.www</groupId>
<artifactId>puremvc</artifactId>
<version>2.0.4</version>
<type>swc</type>
<scope>merged</scope>
</dependency>
<dependency>
<groupId>org.puremvc.www</groupId>
<artifactId>asynccommand</artifactId>
<version>1.0</version>
<type>swc</type>
<scope>merged</scope>
</dependency>
<dependency>
<groupId>info.flex-mojos</groupId>
<artifactId>testing-support</artifactId>
<version>2.0M10</version>
<type>swc</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.defusion.flexunit</groupId>
<artifactId>FlexUnitRunner</artifactId>
<version>0.2.0</version>
<type>swc</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
If I change the super pom to 2.0.1 or 2.0 then maven can not find it.
Is there a better way to structure this pom?
Conrad
--~--~---------~--~----~------------~-------~--~----~
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/
-~----------~----~----~----~------~----~------~--~---