diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 00000000..c04eaac9
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,28 @@
+pipeline{
+
+ agent any
+
+ stages{
+
+ stage("build") {
+
+ steps{
+ echo 'build the app'
+ }
+ }
+
+ stage("test") {
+
+ steps{
+ echo 'test the app'
+ }
+ }
+
+ stage("deploy") {
+
+ steps{
+ echo 'deploy the app'
+ }
+ }
+ }
+}
diff --git a/pom.xml b/pom.xml
index eccd2068..992871fb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,11 +34,23 @@
maven-compiler-plugin
- 1.6
- 1.6
+ 1.8
+ 1.8
+
+ org.apache.maven.plugins
+ maven-war-plugin
+ 3.3.1
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.8.1
+
+
maven-release-plugin