Skip to content

Commit a02a8d3

Browse files
committed
update: doc
1 parent f4a99bd commit a02a8d3

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
/target
22
dependency-reduced-pom.xml
3+
4+
# Others
5+
.classpath
6+
.project
7+
.settings/
8+
.vscode

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ You’ll create an application that provides the time of day and then build it w
1010
+ Install Maven
1111

1212
## 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)
1616

1717
## Set up the project
1818
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
4141
Greeter greeter = new Greeter();
4242
System.out.println(greeter.sayHello());
4343
}
44-
}
45-
```
46-
+ `src/main/java/hello/Greeter.java`
44+
}```
4745
48-
```
46+
+ `src/main/java/hello/Greeter.java`
47+
```
4948
package hello;
5049
public class Greeter {
5150
public String sayHello() {

0 commit comments

Comments
 (0)