ソースを参照

Generalize instructions on creating dir structure

Chris Beams 13 年 前
コミット
df1be38627
共有1 個のファイルを変更した6 個の追加1 個の削除を含む
  1. 6
    1
      README.md

+ 6
- 1
README.md ファイルの表示

41
 
41
 
42
 ### Create the directory structure
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
 ### Create a Maven POM
51
 ### Create a Maven POM
47
 
52