diff --git a/tomcat/pom.xml b/tomcat/pom.xml
new file mode 100644
index 0000000..e9ff6fe
--- /dev/null
+++ b/tomcat/pom.xml
@@ -0,0 +1,77 @@
+
+
+ 4.0.0
+
+
+ org.jenkins-ci.plugins
+ plugin
+ 2.11
+
+
+
+ com.mirantis.plugins
+ murano-tomcat
+ 1.0-SNAPSHOT
+ hpi
+
+
+ 1.625.3
+ 7
+ 2.13
+
+
+ Murano Tomcat Plugin
+ Murano plugin with Tomcat to deploy Jenkins builds
+ https://wiki.jenkins-ci.org/display/JENKINS/TODO+Plugin
+
+
+
+ MIT License
+ http://opensource.org/licenses/MIT
+
+
+
+
+
+ repo.jenkins-ci.org
+ https://repo.jenkins-ci.org/public/
+
+
+
+
+ repo.jenkins-ci.org
+ https://repo.jenkins-ci.org/public/
+
+
+
+
+
+ org.pacesys
+ openstack4j-core
+ 3.0.1
+
+
+ org.pacesys.openstack4j.connectors
+ openstack4j-httpclient
+ 3.0.1
+
+
+ com.googlecode.json-simple
+ json-simple
+ 1.1.1
+
+
+ org.jenkins-ci.plugins
+ credentials
+ 1.16.1
+
+
+ org.jenkins-ci.plugins
+ ssh-credentials
+ 1.10
+
+
+
+
+
diff --git a/tomcat/src/main/java/com/mirantis/plugins/murano/tomcat/ConfigurationSection.java b/tomcat/src/main/java/com/mirantis/plugins/murano/tomcat/ConfigurationSection.java
new file mode 100644
index 0000000..f9ef6e1
--- /dev/null
+++ b/tomcat/src/main/java/com/mirantis/plugins/murano/tomcat/ConfigurationSection.java
@@ -0,0 +1,30 @@
+package com.mirantis.plugins.murano.tomcat;
+
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+/**
+ * Configuration Helper to understand the Mirantis UI definition
+ */
+public class ConfigurationSection {
+ Map> conf;
+
+ public ConfigurationSection() {
+ conf = new HashMap();
+ }
+
+ public void addSection(String sectionName, List fields) {
+ conf.put(sectionName, fields);
+ }
+
+ public List