Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 345 Bytes

create_directory_structure_yarn_root_hello.adoc

File metadata and controls

21 lines (15 loc) · 345 Bytes

Create the directory structure

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

└── src
    └── main
        ├── resources
        └── java
            └── hello

for example, on *nix systems, with:

mkdir -p src/main/resources
mkdir -p src/main/java/hello