nope, try this:
~/Desktop/maven-2.0.5-SNAPSHOT/bin/mvn org.andromda.maven.plugins:andromdapp-maven-plugin:generate
you get this:
[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/org/andromda/maven/plugins/andromda-maven-plugins/3.2/andromda-maven-plugins-3.2.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org/maven2)
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
GroupId: org.andromda.maven.plugins
ArtifactId: andromda-maven-plugins
Version: 3.2
Reason: Unable to download the artifact from any repository
org.andromda.maven.plugins:andromda-maven-plugins:pom:3.2
from the specified remote repositories:
central (http://repo1.maven.org/maven2)
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: < 1 second
[INFO] Finished at: Fri Dec 15 17:26:37 CST 2006
[INFO] Final Memory: 1M/3M
[INFO] ------------------------------------------------------------------------
with settings.xml like this:
<?xml version="1.0"?>
<settings>
<pluginGroups>
<pluginGroup>org.andromda.maven.plugins</pluginGroup>
</pluginGroups>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>snapshot-andromda</id>
<name>AndroMDA Repository</name>
<url>http://team.andromda.org/maven2/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>enabled</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>andromda</id>
<name>AndroMDA Repository</name>
<url>http://team.andromda.org/maven2/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>default</activeProfile>
</activeProfiles>
</settings>
This was marked as closed in the first beta, is there a unit test to check this?