diff --git a/decorator-pattern/pom.xml b/decorator-pattern/pom.xml
new file mode 100644
index 0000000..5217d01
--- /dev/null
+++ b/decorator-pattern/pom.xml
@@ -0,0 +1,20 @@
+
+
+ 4.0.0
+
+ org.borispopic
+ design-pattern
+ 0.0.1-SNAPSHOT
+
+
+ decorator-pattern
+
+
+ 21
+ 21
+ UTF-8
+
+
+
\ No newline at end of file
diff --git a/decorator-pattern/src/main/java/org/borispopic/Main.java b/decorator-pattern/src/main/java/org/borispopic/Main.java
new file mode 100644
index 0000000..0380534
--- /dev/null
+++ b/decorator-pattern/src/main/java/org/borispopic/Main.java
@@ -0,0 +1,17 @@
+package org.borispopic;
+
+//TIP To Run code, press or
+// click the icon in the gutter.
+public class Main {
+ public static void main(String[] args) {
+ //TIP Press with your caret at the highlighted text
+ // to see how IntelliJ IDEA suggests fixing it.
+ System.out.printf("Hello and welcome!");
+
+ for ( int i = 1; i <= 5; i++ ) {
+ //TIP Press to start debugging your code. We have set one breakpoint
+ // for you, but you can always add more by pressing .
+ System.out.println("i = " + i);
+ }
+ }
+}
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 3378d9d..4ecb520 100644
--- a/pom.xml
+++ b/pom.xml
@@ -12,6 +12,7 @@
factory-pattern
observer-pattern
abstract-factory-pattern
+ decorator-pattern