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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]