I'm developing projects in Eclipse and I'm using maven, so I've created a new archetype, using the 'maven-archetype-archetype' Archetype, but once I try to create a new project with the my new archetype, I get the following error message in Eclipse:
The META-INF/maven/archetype.xml descriptor cannot be found.
Any idea what could the reason be?
Update:
My archetype.xml file:
<archetype>
<id>test-archetype</id>
<sources>
<source>src/</source>
</sources>
<testSources>
<source>test/</source>
</testSources>
</archetype>
My pom.xml:
<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>$my.group.id</groupId>
<artifactId>$test-archetype</artifactId>
<version>$0.0.1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
The folder structure is as described:
archetype
|-- pom.xml
`-- src
`-- main
`-- resources
|-- META-INF
| `-- maven
| `--archetype.xml
`-- archetype-resources
|-- pom.xml
`-- src
`-- test
Adam.
I've tried this again recently, now that I'm much more experienced with Maven, and the result was the same, there is an issue with making archetypes, as far as I can see, perhaps Eclipse bug, or miss configuration, but whatever I tried, it didn't do the trick.