瀏覽代碼

Generalize instructions on creating dir structure

Chris Beams 13 年之前
父節點
當前提交
df1be38627
共有 1 個檔案被更改,包括 6 行新增1 行删除
  1. 6
    1
      README.md

+ 6
- 1
README.md 查看文件

@@ -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