Different archetypes have had different problems. Here are some tips:

(1)

> Embedded error: Archetype does not exist: Unable to download the
> artifact from any repository

Put this snapshot repository in your pom.xml:

    <repository>
      <snapshots><enabled>true</enabled></snapshots>
      <id>tapestry-snapshots</id>
      <url>http://people.apache.org/~hlship/tapestry-snapshot-repository/</url>
    </repository>

(2)

> [INFO] Compilation failure
>
> 
D:\essais.maven\my-appT5\src\main\java\org\example\myappT5\services\AppModule.java:[8,42]
> cannot find symbol
> symbol  : class Contribute
> location: package org.apache.tapestry.ioc.annotations
>
> 
D:\essais.maven\my-appT5\src\main\java\org\example\myappT5\services\AppModule.java:[9,42]
> cannot find symbol
> symbol  : class Id
> location: package org.apache.tapestry.ioc.annotations

IIRC, these annotations were removed.
Edit your AppModule.java file and delete @Contribute and @Id occurances.

If you use a more recent archetype, they won't be in the source anyway.

Cheers,
Nick.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to