If I try to run this simple pom.xml (mvn install), i get those warnings.

<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.testtest</groupId>
<artifactId>testtest</artifactId>
<version>1.0</version>
<packaging>pom</packaging>

<build>
<plugins>
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>4.0-SNAPSHOT</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>

</project>

[INFO] Scanning for projects...
*[WARNING] The POM for org.apache.maven:maven-plugin-api:jar:3.0.1-SNAPSHOT is missing, no dependency information available [WARNING] The POM for org.apache.maven:maven-core:jar:3.0.1-SNAPSHOT is missing, no dependency information available [WARNING] The POM for org.apache.maven:maven-compat:jar:3.0.1-SNAPSHOT is missing, no dependency information available [WARNING] The POM for org.apache.maven:maven-artifact:jar:3.0.1-SNAPSHOT is missing, no dependency information available*
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building testtest 1.0
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ testtest --- [INFO] Installing X:\wb_3.5.1\JuriTest\pom.xml to V:\apache-maven-3.0.2\repository\com\testtest\testtest\1.0\testtest-1.0.pom [INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------

but if i replace flexmojos-maven-plugin with any other, for example maven-dependency-plugin i get no warning :

<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.testtest</groupId>
<artifactId>testtest</artifactId>
<version>1.0</version>
<packaging>pom</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
</plugin>
</plugins>
</build>

</project>

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building testtest 1.0
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ testtest --- [INFO] Installing X:\wb_3.5.1\JuriTest\pom.xml to V:\apache-maven-3.0.2\repository\com\testtest\testtest\1.0\testtest-1.0.pom [INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.213s
[INFO] Finished at: Thu Jan 20 18:19:14 CET 2011
[INFO] Final Memory: 2M/15M
[INFO] ------------------------------------------------------------------------


Maybe something's wrong with my environment, anyone else having same issue or I am alone ?



On 20/01/2011 18:05, Marvin Froeder wrote:
Is flexmojos that is causing this warnings?

AFIK, it never used 3.0.1-SNAPSHOT....

On Thu, Jan 20, 2011 at 3:02 PM, Adnan Doric P. <astronaute.pro <http://astronaute.pro>@gmail.com <http://gmail.com>> wrote:

    Hello,

    I use Maven 3.0.2:
    Apache Maven 3.0.2 (r1056850; 2011-01-09 01:58:10+0100)
    Java version: 1.6.0_20, vendor: Sun Microsystems Inc.
    Java home: C:\Program Files (x86)\Java\jdk1.6.0_20\jre
    Default locale: en_US, platform encoding: Cp1252
    OS name: "windows 7", version: "6.1", arch: "x86", family: "windows"

    When I use flex-mojos with Maven 3.0.2 I always get those warnings
    at the beginning, is that normal ?

    [WARNING] The POM for
    org.apache.maven:maven-plugin-api:jar:3.0.1-SNAPSHOT is missing,
    no dependency information available
    [WARNING] The POM for
    org.apache.maven:maven-core:jar:3.0.1-SNAPSHOT is missing, no
    dependency information available
    [WARNING] The POM for
    org.apache.maven:maven-compat:jar:3.0.1-SNAPSHOT is missing, no
    dependency information available
    [WARNING] The POM for
    org.apache.maven:maven-artifact:jar:3.0.1-SNAPSHOT is missing, no
    dependency information available

    Thank you for your help,
    Adnan

-- 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]
    <mailto:[email protected]>
    To unsubscribe from this group, send email to
    [email protected]
    <mailto:flex-mojos%[email protected]>
    For more options, visit this group at
    http://groups.google.com/group/flex-mojos

    http://flexmojos.sonatype.org/


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

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