You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kr...@apache.org on 2012/01/29 11:53:57 UTC

svn commit: r1237239 - /maven/surefire/trunk/pom.xml

Author: krosenvold
Date: Sun Jan 29 10:53:56 2012
New Revision: 1237239

URL: http://svn.apache.org/viewvc?rev=1237239&view=rev
Log:
o Fixed site deployment issue

Modified:
    maven/surefire/trunk/pom.xml

Modified: maven/surefire/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/pom.xml?rev=1237239&r1=1237238&r2=1237239&view=diff
==============================================================================
--- maven/surefire/trunk/pom.xml (original)
+++ maven/surefire/trunk/pom.xml Sun Jan 29 10:53:56 2012
@@ -259,6 +259,27 @@
           <artifactId>maven-plugin-plugin</artifactId>
           <version>2.8</version>
         </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>3.0</version>
+        <configuration>
+          <reportPlugins>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-surefire-plugin</artifactId>
+              <version>${shadedVersion}</version>
+            </plugin>
+          </reportPlugins>
+        </configuration>
+        <dependencies>
+        <dependency>
+        <groupId>org.apache.maven.surefire</groupId>
+        <artifactId>surefire-shadefire</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      </dependencies>
+      </plugin>
       </plugins>
     </pluginManagement>
   </build>