OK, sorry for this very newbie question, but I ma falling at the first
hurdle.

I am trying to get a very simple Flex 3, FP 10 project running under
maven and so have created the pom.xml file listed below. Unfortunately
when I type mvn at the command line I get the following error message:

[INFO] Scanning for projects...
Downloading: 
http://repo1.maven.org/maven2/info/flex-mojos/flex-super-pom/2.0M10/flex-super-pom-2.0M10.pom
[INFO]
------------------------------------------------------------------------
[ERROR] FATAL ERROR
[INFO]
------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

And indeed that file does not seem to exist at the repository.

Could someone please tell me how to make mvn look in the correct
repository? What am I missing?

Conrad

pom file follows>>>>>

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

    <parent>
        <groupId>info.flex-mojos</groupId>
        <artifactId>flex-super-pom</artifactId>
        <version>2.0M10</version>
    </parent>

        <groupId>info.rvin.itest</groupId>
        <artifactId>flash-player-10</artifactId>
        <version>1.0-SNAPSHOT</version>

        <packaging>swf</packaging>

        <prerequisites>
                <maven>2.0.9</maven>
        </prerequisites>

        <build>
                <sourceDirectory>src</sourceDirectory>
                <plugins>
                        <plugin>
                                <groupId>info.flex-mojos</groupId>
                                <artifactId>flex-compiler-mojo</artifactId>
                                <configuration>
                                        <targetPlayer>10.0.0</targetPlayer>
                                </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>
        </dependencies>


</project>

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