diff --git a/patterns/README.md b/patterns/README.md
index bcd54a64b1..67d84154cb 100644
--- a/patterns/README.md
+++ b/patterns/README.md
@@ -1,3 +1,4 @@
###Relevant Articles:
- [A Guide to the Front Controller Pattern in Java](http://www.baeldung.com/java-front-controller-pattern)
- [Introduction to Intercepting Filter Pattern in Java](http://www.baeldung.com/intercepting-filter-pattern-in-java)
+- [Implementing the Template Method Pattern in Java](http://www.baeldung.com/template-method-pattern-in-java)
diff --git a/patterns/pom.xml b/patterns/pom.xml
index c40d7c58b7..68e5316f64 100644
--- a/patterns/pom.xml
+++ b/patterns/pom.xml
@@ -9,6 +9,7 @@
front-controller
intercepting-filter
+ template-method
@@ -51,4 +52,4 @@
3.0.0
9.4.0.v20161208
-
+
\ No newline at end of file
diff --git a/patterns/template-method/pom.xml b/patterns/template-method/pom.xml
index c3b6a084ac..4b863fe0a4 100644
--- a/patterns/template-method/pom.xml
+++ b/patterns/template-method/pom.xml
@@ -1,15 +1,17 @@
4.0.0
- com.baeldung.templatemethodpattern
- templatemethodpattern
+ com.baeldung.templatemethod
+ template-method
1.0
jar
-
- UTF-8
- 1.8
- 1.8
-
+
+ com.baeldung.patterns
+ patterns-parent
+ 1.0.0-SNAPSHOT
+ ..
+
+
junit
@@ -18,4 +20,18 @@
test
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.7.0
+
+
+
+
+ UTF-8
+ 1.8
+ 1.8
+
\ No newline at end of file