[~fbricon] : I'm not really clear what the problem is. The top level quickstarts are all in a directory one level below the top parent level. Some quickstarts, like `inter-app`, that are composed of multiple applications that talk to each other, are another level deep.
Can you point to a specific problem?
This is a shortened, simplified tree structure for the JBoss EAP quickstarts (https://github.com/jboss-developer/jboss-eap-quickstarts/)
curent directory = jboss-eap-quickstarts . ├── app-client │ ├── client-simple │ │ ├── pom.xml │ │ └── src │ │ └── ... │ ├── ear │ │ └── pom.xml │ ├── ejb │ │ ├── pom.xml │ │ └── src │ │ └── ... │ ├── pom.xml │ └── README.md ├── ejb-in-ear │ ├── ear │ │ └── pom.xml │ ├── ejb │ │ ├── pom.xml │ │ └── src │ │ └── ... │ ├── pom.xml │ ├── README.md │ └── web │ ├── pom.xml │ └── src │ └── ... │├── ejb-in-war │ ├── pom.xml │ ├── README.md │ └── src │ ├── ... ├── inter-app │ ├── appA │ │ ├── pom.xml │ │ └── src │ │ └── ... │ ├── appB │ │ ├── pom.xml │ │ └── src │ │ └── ... │ ├── pom.xml │ ├── README.md │ └── shared │ ├── pom.xml │ └── src │ └── ...
|