diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..13566b81b --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/java-hello-world-with-maven.iml b/.idea/java-hello-world-with-maven.iml new file mode 100644 index 000000000..c956989b2 --- /dev/null +++ b/.idea/java-hello-world-with-maven.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 000000000..3914ee9d4 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 000000000..f324872a8 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..35eb1ddfb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 6dcfe4465..8c81d34fa 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This guide walks you through using Maven to build a simple Java project. ## What you’ll build -You’ll create an application that provides the time of day and then build it with Maven. +You’ll create an application that provides the time of day and then build it with Mave ## What you’ll need + A favorite text editor or IDE @@ -20,7 +20,7 @@ First you’ll need to setup a Java project for Maven to build. To keep the focu #### Create the directory structure --- + Create a root project directory named `HelloWorldMaven` and `cd HelloWorldMaven`. -+ In a project directory of your choosing, create the following subdirectory structure. ++ In a project directory of your choosing, create the following subdirectory structure + For example, with `mkdir -p src/main/java/hello` on *nix systems:* + on Windows you can create this directory manually. diff --git a/f1 b/f1 new file mode 100644 index 000000000..e69de29bb diff --git a/f2 b/f2 new file mode 100644 index 000000000..e69de29bb diff --git a/src/main/java/hello/HelloWorld.java b/src/main/java/hello/HelloWorld.java deleted file mode 100644 index 19e4ff928..000000000 --- a/src/main/java/hello/HelloWorld.java +++ /dev/null @@ -1,13 +0,0 @@ -package hello; - -import org.joda.time.LocalTime; - -public class HelloWorld { - public static void main(String[] args) { - LocalTime currentTime = new LocalTime(); - System.out.println("The current local time is: " + currentTime); - - Greeter greeter = new Greeter(); - System.out.println(greeter.sayHello()); - } -}