From 21e9f96741fd168c825a28675fac7af1cefd80a2 Mon Sep 17 00:00:00 2001 From: Rubeenakhan16 <142878059+Rubeenakhan16@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:33:37 +0530 Subject: [PATCH 1/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dcfe4465..ae9a2bc37 100644 --- a/README.md +++ b/README.md @@ -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. From 6756cb8642251a8ecab511bd300640777d1bde7d Mon Sep 17 00:00:00 2001 From: Rubeenakhan16 <142878059+Rubeenakhan16@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:35:54 +0530 Subject: [PATCH 2/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae9a2bc37..b733add0a 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 Maven ## What you’ll need + A favorite text editor or IDE From f836d5d07f4f5628203f5da65b4f604e5b786e03 Mon Sep 17 00:00:00 2001 From: Rubeenakhan16 <142878059+Rubeenakhan16@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:39:32 +0530 Subject: [PATCH 3/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b733add0a..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 From 66d6add99d22b85588b61b862ea2066693414c2e Mon Sep 17 00:00:00 2001 From: mohammed Date: Thu, 26 Oct 2023 10:37:27 +0530 Subject: [PATCH 4/6] created the file f1 --- f1 | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 f1 diff --git a/f1 b/f1 new file mode 100644 index 000000000..e69de29bb From 0b2a98cc9088ed1cce0f63176618857ef132108b Mon Sep 17 00:00:00 2001 From: mohammed Date: Thu, 26 Oct 2023 10:40:44 +0530 Subject: [PATCH 5/6] second file created --- f2 | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 f2 diff --git a/f2 b/f2 new file mode 100644 index 000000000..e69de29bb From 67f3a32806239440aadd2be247f045bba5111a49 Mon Sep 17 00:00:00 2001 From: mohammed Date: Thu, 26 Oct 2023 13:22:47 +0530 Subject: [PATCH 6/6] testing --- .idea/.gitignore | 8 ++++++++ .idea/java-hello-world-with-maven.iml | 8 ++++++++ .idea/modules.xml | 8 ++++++++ .idea/php.xml | 19 +++++++++++++++++++ .idea/vcs.xml | 6 ++++++ src/main/java/hello/HelloWorld.java | 13 ------------- 6 files changed, 49 insertions(+), 13 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/java-hello-world-with-maven.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml delete mode 100644 src/main/java/hello/HelloWorld.java 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/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()); - } -}