You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2009/02/02 21:39:22 UTC

svn commit: r740099 - in /httpcomponents/httpcore/trunk: module-main/pom.xml module-nio/pom.xml pom.xml

Author: olegk
Date: Mon Feb  2 20:39:22 2009
New Revision: 740099

URL: http://svn.apache.org/viewvc?rev=740099&view=rev
Log:
Updated reporting plugin definition

Modified:
    httpcomponents/httpcore/trunk/module-main/pom.xml
    httpcomponents/httpcore/trunk/module-nio/pom.xml
    httpcomponents/httpcore/trunk/pom.xml

Modified: httpcomponents/httpcore/trunk/module-main/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-main/pom.xml?rev=740099&r1=740098&r2=740099&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-main/pom.xml (original)
+++ httpcomponents/httpcore/trunk/module-main/pom.xml Mon Feb  2 20:39:22 2009
@@ -112,18 +112,42 @@
   <reporting>
     <plugins>
 
-       <plugin>
-         <groupId>org.apache.maven.plugins</groupId>
-         <artifactId>maven-project-info-reports-plugin</artifactId>
-         <reportSets>
-           <reportSet>
-             <reports>
-               <report>dependencies</report>
-               <report>issue-tracking</report>
-               <report>scm</report>
-             </reports>
-           </reportSet>
-         </reportSets>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+          </links>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>javadoc</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-jxr-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>clirr-maven-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-clover-plugin</artifactId>
+        <configuration>
+          <jdk>1.5</jdk>
+          <licenseLocation>${clover.license}</licenseLocation>
+        </configuration>
       </plugin>
 
     </plugins>

Modified: httpcomponents/httpcore/trunk/module-nio/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/pom.xml?rev=740099&r1=740098&r2=740099&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/pom.xml (original)
+++ httpcomponents/httpcore/trunk/module-nio/pom.xml Mon Feb  2 20:39:22 2009
@@ -117,18 +117,43 @@
   <reporting>
     <plugins>
 
-       <plugin>
-         <groupId>org.apache.maven.plugins</groupId>
-         <artifactId>maven-project-info-reports-plugin</artifactId>
-         <reportSets>
-           <reportSet>
-             <reports>
-               <report>dependencies</report>
-               <report>issue-tracking</report>
-               <report>scm</report>
-             </reports>
-           </reportSet>
-         </reportSets>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+            <link>http://hc.apache.org/httpcomponents-core/httpcore/apidocs/</link>
+          </links>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>javadoc</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-jxr-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>clirr-maven-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-clover-plugin</artifactId>
+        <configuration>
+          <jdk>1.5</jdk>
+          <licenseLocation>${clover.license}</licenseLocation>
+        </configuration>
       </plugin>
 
     </plugins>

Modified: httpcomponents/httpcore/trunk/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/pom.xml?rev=740099&r1=740098&r2=740099&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/pom.xml (original)
+++ httpcomponents/httpcore/trunk/pom.xml Mon Feb  2 20:39:22 2009
@@ -191,6 +191,24 @@
               <value>${pom.version}</value>
             </entity>
           </entities>
+          <postProcess>
+            <copy todir="target/site/tutorial">
+              <fileset dir="target/docbkx">
+                <include name="**/*.html"/>
+                <include name="**/*.pdf"/>
+              </fileset>
+            </copy>
+            <copy todir="target/site/tutorial/html">
+              <fileset dir="src/docbkx/resources">
+                <include name="**/*.css"/>
+                <include name="**/*.png"/>
+                <include name="**/*.gif"/>
+                <include name="**/*.jpg"/>
+              </fileset>
+            </copy>
+            <move file="target/site/tutorial/pdf/index.pdf"
+                  tofile="target/site/tutorial/pdf/httpcore-tutorial.pdf" failonerror="false"/>
+          </postProcess>
         </configuration>
       </plugin>
     </plugins>
@@ -213,38 +231,6 @@
          </reportSets>
       </plugin>
 
-      <plugin>
-        <artifactId>maven-clover-plugin</artifactId>
-        <configuration>
-          <jdk>1.5</jdk>
-          <licenseLocation>${clover.license}</licenseLocation>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <aggregate>true</aggregate>
-          <links>
-            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
-          </links>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-jxr-plugin</artifactId>
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-surefire-report-plugin</artifactId>
-      </plugin>
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>clirr-maven-plugin</artifactId>
-      </plugin>
-
     </plugins>
   </reporting>