Hallo,
Recently I encountered a problem with archetype. Here my scenario:
I created a archetype from my existing (multimodal) project. The parent
artifact is called "web".
Starting from this archetype I created a new project with IntelliJ (don't
know if this might make a difference).
I named the artifact id of the new parent "webapp".
Then strage things happend: In one of my modules i have a dependency to
spring-web which looks like this:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
In the new created project the artifact id of the dependency was
renamed to "spring-webapp". (See below)
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webapp</artifactId>
</dependency>
To be honest I'm quite new to archetype, but this seems like a bug to
me. I looked it up on google but did not find any
known issues. Therefor I decided to write you a mail.
with kind regargs,
Daniel Heily