Hello, I am trying to create an own archetype which should create a specific folder structure inside the package given through the groupId and artifactId. So let’s say I have this project structure:
> my-app/pom.xml > my-app/src/main/java/models/DefaultUser.java > my-app/src/main/java/control/UserController.java So, I do have some default implementations I need everywhere, but I also want to create some folders that will be empty. So far I have not found a way to create empty folders. My goal is to create the following structure out of the above with the groupId “my.group” and the artifactId “app”: > my-app/pom.xml > my-app/src/main/java/my/group/app/models/DefaultUser.java > my-app/src/main/java/my/group/app/control/UserController.java Is it possible to copy files from a standard path to those generated paths? Thanks in advance. Christian
