Skip to content

Latest commit

 

History

History
56 lines (49 loc) · 1.54 KB

create_directory_structure_yarn_test_hello.adoc

File metadata and controls

56 lines (49 loc) · 1.54 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
    └── src
        └── test
            └── java
                └── hello

for example, 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/src/test/java/hello

on *nix systems: