Skip to content

Commit cf456b4

Browse files
committed
Documentation updated, failOnMissingWebXml property added to POM, so maven-war-plugin executes with no error
1 parent 57a03ca commit cf456b4

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

README.md

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,36 @@ Spring Boot and Thymeleaf with Maven
66
- Thymeleaf with Java 8 Time (Java8TimeDialect)
77
- WebJars
88
- Selenium configuration included
9+
- Maven Wrapper included
10+
11+
Prerequisites
12+
-------------
13+
14+
- JDK 8 and JAVA_HOME environment variable set
15+
16+
Building the project
17+
--------------------
18+
19+
Clone the repository:
20+
21+
> git clone https://github.com/kolorobot/spring-boot-thymeleaf
22+
23+
Navigate to the newly created folder:
24+
25+
> cd spring-boot-thymeleaf
26+
27+
Run the project with:
28+
29+
> mvnw clean spring-boot:run
30+
31+
To package the project run:
32+
33+
> mvnw clean package
934
1035

1136
Referenced articles:
1237
--------------------
1338

14-
- http://blog.codeleak.pl/2015/11/how-to-java-8-date-time-with-thymeleaf.html
15-
- http://blog.codeleak.pl/2014/04/how-to-spring-boot-and-thymeleaf-with-maven.html
16-
- http://blog.codeleak.pl/2015/03/spring-boot-integration-testing-with.html
39+
- [Java 8 Date & Time with Thymeleaf](http://blog.codeleak.pl/2015/11/how-to-java-8-date-time-with-thymeleaf.html)
40+
- [Spring Boot and Thymeleaf with Maven](http://blog.codeleak.pl/2014/04/how-to-spring-boot-and-thymeleaf-with-maven.html)
41+
- [Spring Boot Integration Testing with Selenium](http://blog.codeleak.pl/2015/03/spring-boot-integration-testing-with.html)

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<java.version>1.8</java.version>
1414
<maven.compiler.source>${java.version}</maven.compiler.source>
1515
<maven.compiler.target>${java.version}</maven.compiler.target>
16+
<failOnMissingWebXml>false</failOnMissingWebXml>
1617
</properties>
1718

1819
<!-- Spring IO Platform for dependency management -->

0 commit comments

Comments
 (0)