Skip to content

Latest commit

 

History

History
52 lines (44 loc) · 1.42 KB

create_directory_structure_yarn_hello.adoc

File metadata and controls

52 lines (44 loc) · 1.42 KB

Create the directory structure

In a project directory of your choosing, create the following subdirectory structure:

├── appmain
│   └── src
│       └── main
│           ├── resources
│           └── java
│               └── hello
│                   └── appmain
├── container
│   └── src
│       └── main
│           ├── resources
│           └── java
│               └── hello
│                   └── container
├── client
│   └── src
│       └── main
│           ├── resources
│           └── java
│               └── hello
│                   └── client
└── dist

for example, on *nix systems, with:

mkdir -p appmain/src/main/resources
mkdir -p appmain/src/main/java/hello/appmain
mkdir -p container/src/main/resources
mkdir -p container/src/main/java/hello/container
mkdir -p client/src/main/resources
mkdir -p client/src/main/java/hello/client
mkdir -p dist