You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2005/09/28 05:14:13 UTC

svn commit: r292103 - /maven/components/trunk/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml

Author: brett
Date: Tue Sep 27 20:14:06 2005
New Revision: 292103

URL: http://svn.apache.org/viewcvs?rev=292103&view=rev
Log:
PR: MNG-677
default output directory should be set in reporting

Modified:
    maven/components/trunk/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml

Modified: maven/components/trunk/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml?rev=292103&r1=292102&r2=292103&view=diff
==============================================================================
--- maven/components/trunk/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml (original)
+++ maven/components/trunk/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml Tue Sep 27 20:14:06 2005
@@ -46,24 +46,28 @@
       </testResource>
     </testResources>
   </build>
-  
+
+  <reporting>
+    <outputDirectory>target/site</outputDirectory>
+  </reporting>
+
   <profiles>
     <profile>
       <id>release-profile</id>
-      
+
       <activation>
         <property>
           <name>performRelease</name>
         </property>
       </activation>
-      
+
       <build>
         <plugins>
           <plugin>
             <inherited>true</inherited>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-source-plugin</artifactId>
-            
+
             <executions>
               <execution>
                 <id>attach-sources</id>
@@ -77,7 +81,7 @@
             <inherited>true</inherited>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-deploy-plugin</artifactId>
-            
+
             <configuration>
               <updateReleaseInfo>true</updateReleaseInfo>
             </configuration>
@@ -86,6 +90,6 @@
       </build>
     </profile>
   </profiles>
-  
+
 </project>
     <!-- END SNIPPET: superpom -->



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org