diff --git a/pom.xml b/pom.xml index 29ca4ea3c21b80fa3a18af6c075d70d8196f42da..47b7de922ddc52283fe660c7e4a52cd9560dd91a 100644 --- a/pom.xml +++ b/pom.xml @@ -259,25 +259,30 @@ </execution> </executions> </plugin> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>3.3</version> + <dependencies> + + <dependency> + <groupId>lt.velykis.maven.skins</groupId> + <artifactId>reflow-velocity-tools</artifactId> + <version>1.1.1</version> + </dependency> + <!-- Reflow skin requires Velocity >= 1.7 --> + <dependency> + <groupId>org.apache.velocity</groupId> + <artifactId>velocity</artifactId> + <version>1.7</version> + </dependency> + </dependencies> + </plugin> </plugins> </build> <reporting> <plugins> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-changes-plugin</artifactId> - <version>2.11</version> - <reportSets> - <reportSet> - <reports> - <report>changes-report</report> - </reports> - </reportSet> - </reportSets> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> diff --git a/src/site/site.xml b/src/site/site.xml new file mode 100644 index 0000000000000000000000000000000000000000..e3410fc7d73808d3eb8966824dd8cb04b69f7bd7 --- /dev/null +++ b/src/site/site.xml @@ -0,0 +1,13 @@ +<project> + <skin> + <groupId>lt.velykis.maven.skins</groupId> + <artifactId>reflow-maven-skin</artifactId> + <version>1.1.1</version> + </skin> + <body> + <breadcrumbs> + </breadcrumbs> + <menu ref="modules"/> + <menu ref="reports" inherit="bottom"/> + </body> +</project> \ No newline at end of file