Przeglądaj źródła

Generalize instructions on creating dir structure

Chris Beams 13 lat temu
rodzic
commit
df1be38627
1 zmienionych plików z 6 dodań i 1 usunięć
  1. 6
    1
      README.md

+ 6
- 1
README.md Wyświetl plik

@@ -41,7 +41,12 @@ Set up the project
41 41
 
42 42
 ### Create the directory structure
43 43
 
44
-    mkdir -p src/main/java/hello
44
+In a project directory of your choosing, create the following subdirectory structure (e.g. with `mkdir -p src/main/java/hello` on *nix systems):
45
+
46
+    └── src
47
+        └── main
48
+            └── java
49
+                └── hello
45 50
 
46 51
 ### Create a Maven POM
47 52