Hello all,
With Maven Archetype - Version 1.0-alpha-4 the creation of my multi-module
project fails with:
[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] Error creating from archetype
Embedded error: Template 'webModule/src/main/java/App.java' not in directory
'src/main/java'
With the previous version (alpha-3 ) it was possible to create a
multi-module project that looks like:
- archetype-resources
+ ear
+ ejb
+ jarModule
- webModule
- src
+ main
+ test
pom.xml
pom.xml
The source section of my archetype.xml looks like:
<sources>
<!-- web module -->
<source>webModule/src/main/java/App.java</source>
<!-- ejb module -->
<source>ejb/src/main/java/App.java</source>
<!-- jar module -->
<source>jarModule/src/main/java/App.java</source>
</sources>
Anyone a clue?
Thanks
--
Johan Vogelzang