Repository: incubator-blur Updated Branches: refs/heads/apache-blur-0.2 198cca0e7 -> f10433a1a
Added some report generation Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/e65cc1e9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/e65cc1e9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/e65cc1e9 Branch: refs/heads/apache-blur-0.2 Commit: e65cc1e90a468dd9a0b3a5c2777c3e207cc24e32 Parents: 198cca0 Author: Chris Rohr <[email protected]> Authored: Thu Jun 19 22:08:37 2014 -0400 Committer: Chris Rohr <[email protected]> Committed: Thu Jun 19 22:08:37 2014 -0400 ---------------------------------------------------------------------- blur-console/pom.xml | 68 ++++++++++++++++++++++++++--------------------- 1 file changed, 38 insertions(+), 30 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/e65cc1e9/blur-console/pom.xml ---------------------------------------------------------------------- diff --git a/blur-console/pom.xml b/blur-console/pom.xml index 6cd7e93..9354461 100644 --- a/blur-console/pom.xml +++ b/blur-console/pom.xml @@ -28,7 +28,7 @@ <name>Blur Console</name> <properties> - <!-- Grunt Execution Target. Valid values are [ development | production + <!-- Grunt Execution Target. Valid values are [ development | production ] --> <grunt.target>development</grunt.target> @@ -113,6 +113,10 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> @@ -167,25 +171,25 @@ <artifactId>maven-site-plugin</artifactId> <version>3.3</version> </plugin> - <!--<plugin>--> - <!--<groupId>org.codehaus.mojo</groupId>--> - <!--<artifactId>cobertura-maven-plugin</artifactId>--> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> <!--<version>2.6</version>--> - <!--<configuration>--> - <!--<instrumentation>--> - <!--<excludes>--> - <!--<exclude>org/apache/blur/console/**/*Test.class</exclude>--> - <!--</excludes>--> - <!--</instrumentation>--> - <!--</configuration>--> - <!--<executions>--> - <!--<execution>--> - <!--<goals>--> - <!--<goal>clean</goal>--> - <!--</goals>--> - <!--</execution>--> - <!--</executions>--> - <!--</plugin>--> + <configuration> + <instrumentation> + <excludes> + <exclude>org/apache/blur/console/**/*Test.class</exclude> + </excludes> + </instrumentation> + </configuration> + <executions> + <execution> + <goals> + <goal>clean</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> @@ -201,18 +205,22 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> + <artifactId>maven-surefire-report-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <configuration> + <formats> + <format>html</format> + <format>xml</format> + </formats> + </configuration> </plugin> - <!--<plugin>--> - <!--<groupId>org.codehaus.mojo</groupId>--> - <!--<artifactId>cobertura-maven-plugin</artifactId>--> - <!--<configuration>--> - <!--<formats>--> - <!--<format>html</format>--> - <!--<format>xml</format>--> - <!--</formats>--> - <!--</configuration>--> - <!--</plugin>--> </plugins> </reporting>
