File tree 2 files changed +12
-7
lines changed
2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
/target
2
2
dependency-reduced-pom.xml
3
+
4
+ # Others
5
+ .classpath
6
+ .project
7
+ .settings /
8
+ .vscode
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ You’ll create an application that provides the time of day and then build it w
10
10
+ Install Maven
11
11
12
12
## Install Maven.
13
- + [ Install Maven on Windows] ( http ://www.mkyong .com/maven/how-to-install- maven-in -windows/ )
14
- + [ Install Maven on Ubuntu ] ( http ://www.mkyong .com/maven/how-to-install- maven-in-ubuntu/ )
15
- + [ Install Maven on Mac OSX] ( http ://www.mkyong .com/maven/ install-maven-on-mac-osx/ )
13
+ + [ Install Maven on Windows] ( https ://www.baeldung .com/install- maven-on-windows-linux-mac#installing- maven-on -windows)
14
+ + [ Install Maven on Linux ] ( https ://www.baeldung .com/install- maven-on-windows-linux-mac#installing- maven-on-linux )
15
+ + [ Install Maven on Mac OSX] ( https ://www.baeldung .com/install-maven-on-windows-linux- mac#installing-maven-on-mac-os-x )
16
16
17
17
## Set up the project
18
18
First you’ll need to setup a Java project for Maven to build. To keep the focus on Maven, make the project as simple as possible for now.
@@ -41,11 +41,10 @@ First you’ll need to setup a Java project for Maven to build. To keep the focu
41
41
Greeter greeter = new Greeter();
42
42
System.out.println(greeter.sayHello());
43
43
}
44
- }
45
- ```
46
- + ` src/main/java/hello/Greeter.java `
44
+ }```
47
45
48
- ```
46
+ + `src/main/java/hello/Greeter.java`
47
+ ```
49
48
package hello;
50
49
public class Greeter {
51
50
public String sayHello() {
You can’t perform that action at this time.
0 commit comments