diff --git a/pom.xml b/pom.xml
index cfe2608..fc838c1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,6 +58,9 @@
maven-release-plugin
+
+ deploy site site:stage scm-publish:publish-scm
+
maven-resources-plugin
@@ -77,6 +80,32 @@
org.codehaus.mojo
license-maven-plugin
+
+ org.apache.maven.plugins
+ maven-site-plugin
+
+
+ org.apache.maven.plugins
+ maven-scm-publish-plugin
+
+
+
+ true
+
+
+ org.apache.maven.plugins
+ maven-plugin-report-plugin
+
+
+
+
+
+
+ github
+ scm:git:https://github.com/eitco/eitco.github.io.git
+
+
+
\ No newline at end of file
diff --git a/src/main/java/de/eitco/cicd/build/utilities/DependenciesVersionPropertiesMojo.java b/src/main/java/de/eitco/cicd/build/utilities/DependenciesVersionPropertiesMojo.java
index 42e4a4e..0915d19 100644
--- a/src/main/java/de/eitco/cicd/build/utilities/DependenciesVersionPropertiesMojo.java
+++ b/src/main/java/de/eitco/cicd/build/utilities/DependenciesVersionPropertiesMojo.java
@@ -42,11 +42,14 @@ public class DependenciesVersionPropertiesMojo extends AbstractMojo {
private MavenProject project;
/**
- * Skip plugin execution completely.
+ * If this parameter is set to {@code true} the plugin execution is skipped completely.
*/
@Parameter(property = "dependencies-version-properties.skip", defaultValue = "false")
private boolean skip;
+ /**
+ * This parameter specifies whether to add properties holding the files of the dependencies.
+ */
@Parameter(property = "dependencies-version-properties.add-files", defaultValue = "false")
private boolean addFiles;
diff --git a/src/site/site.xml b/src/site/site.xml
new file mode 100644
index 0000000..3687225
--- /dev/null
+++ b/src/site/site.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ org.apache.maven.skins
+ maven-fluido-skin
+ 1.12.0
+
+
+
+
+
+
\ No newline at end of file