diff --git a/pom.xml b/pom.xml
index 808ce03..c38db93 100644
--- a/pom.xml
+++ b/pom.xml
@@ -60,6 +60,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
power-sql
power-db
power-persistence
+ power-svg
power-view
power-xml
diff --git a/power-svg/pom.xml b/power-svg/pom.xml
new file mode 100644
index 0000000..3035f65
--- /dev/null
+++ b/power-svg/pom.xml
@@ -0,0 +1,58 @@
+
+
+
+ 4.0.0
+
+
+ org.nanoboot.powerframework
+ power-framework
+ 2.0.0-SNAPSHOT
+
+
+ power-svg
+ jar
+
+ Power SVG
+ SVG for the Power library
+
+
+
+
+ org.nanoboot.powerframework
+ power-core
+ ${power.version}
+
+
+ org.nanoboot.powerframework
+ power-log
+ ${power.version}
+
+
+
+
+ junit
+ junit
+ 4.12
+ test
+
+
+
diff --git a/power-svg/src/main/java/module-info.java b/power-svg/src/main/java/module-info.java
new file mode 100644
index 0000000..f99825e
--- /dev/null
+++ b/power-svg/src/main/java/module-info.java
@@ -0,0 +1,32 @@
+
+///////////////////////////////////////////////////////////////////////////////////////////////
+// power-framework: Java library with many purposes of usage.
+// Copyright (C) 2016-2022 the original author or authors.
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation;
+// version 2.1 of the License only.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+///////////////////////////////////////////////////////////////////////////////////////////////
+
+/**
+ *
+ *
+ * @author Robert Vokac
+ * @since 0.0.0
+ */
+
+module powerframework.template {
+ requires powerframework.core;
+ requires powerframework.log;
+ requires powerframework.utils;
+}
diff --git a/power-svg/src/main/java/org/nanoboot/powerframework/svg/.gitkeep b/power-svg/src/main/java/org/nanoboot/powerframework/svg/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/power-svg/src/main/java/org/nanoboot/powerframework/svg/Svg.java b/power-svg/src/main/java/org/nanoboot/powerframework/svg/Svg.java
new file mode 100644
index 0000000..fe0d621
--- /dev/null
+++ b/power-svg/src/main/java/org/nanoboot/powerframework/svg/Svg.java
@@ -0,0 +1,13 @@
+/*
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
+ */
+package org.nanoboot.powerframework.svg;
+
+/**
+ *
+ * @author robertvokac
+ */
+public class Svg {
+
+}
diff --git a/power-svg/src/main/resources/.gitkeep b/power-svg/src/main/resources/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/power-svg/src/test/java/org/nanoboot/powerframework/svg/.gitkeep b/power-svg/src/test/java/org/nanoboot/powerframework/svg/.gitkeep
new file mode 100644
index 0000000..e69de29