christophe-hall / as3-commons

Automatically exported from code.google.com/p/as3-commons
0 stars 0 forks source link

Maven build is wrong. #19

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Maven build is wrong.  Released versions cannot have snapshot dependencies.

RE:

<artifactId>as3commons-reflect</artifactId>
<packaging>swc</packaging>
<version>1.1</version>
<name>AS3Commons Reflect</name>
<url>http://code.google.com/p/as3-commons</url>
<description>
  Library providing a reflection API for ActionScript 3.0
</description>
<inceptionYear>2007</inceptionYear>

<dependencies>
                <dependency>
                        <groupId>org.as3commons</groupId>
                        <artifactId>as3commons-lang</artifactId>
                        <version>1.0.0-SNAPSHOT</version>
                        <type>swc</type>
                </dependency>
                <dependency>
                        <groupId>org.as3commons</groupId>
                        <artifactId>as3commons-logging</artifactId>
                        <version>1.1</version>
                        <type>swc</type>
                </dependency>
</dependencies>

Also, why is there no relased as3commons-lang artifact?

Original issue reported on code.google.com by dhoff...@gmail.com on 22 Feb 2010 at 9:23

GoogleCodeExporter commented 8 years ago
Fixes available in the trunk. From now on we're using the maven-release plugin 
so in the future there shouldn't be any released that depend on snapshots.

Original comment by ihatelivelyids on 10 Nov 2010 at 9:17