Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 530 Bytes

create_directory_structure_yarn_single_hello.adoc

File metadata and controls

28 lines (20 loc) · 530 Bytes

Create the directory structure

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

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

for example, on *nix systems, with:

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