maven archetype:create-from-project did not contain the package

62 views Asked by At

here is my folder structer:

pom.xml
src
  ├───api
  │   │   pom.xml
  │   └───src
  │       ├───main
  │       │   ├───java
  │       │   │    └───api
  │       │   │         |---MyEntity.java
  │       │   └───resources
  │       │       └───META-INF
  │———————|beans.xml

when i used the mvn archetype:create-from-project, it works well, and next i create a proj using the archetype

but in the generated-arch folder it didn't contain the package, i mean , the folder stucter looks like this:

pom.xml
src
  ├───api
  │   │   pom.xml
  │   └───src
  │       ├───main
  │       │   ├───java
  │       │   │    └──MyEntity.java
  │       │   └───resources
  │       │       └───META-INF
  │———————|beans.xml

what's wrong with it ?

0

There are 0 answers