5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-04 00:11:15 +08:00

SQOOP-757: Disable maven reports project wise

(Jarek Jarcec Cecho via Cheolsoo Park)
This commit is contained in:
Cheolsoo Park 2012-12-12 14:40:53 -08:00
parent 3b5a641eda
commit 4acbd25698
2 changed files with 13 additions and 11 deletions

View File

@ -34,16 +34,6 @@ limitations under the License.
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<reportSets>
<reportSet>
<reports></reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.tomdz.maven</groupId>
<artifactId>sphinx-maven-plugin</artifactId>

14
pom.xml
View File

@ -361,12 +361,24 @@ limitations under the License.
<!-- All reports might be generated using mvn site command -->
<reporting>
<plugins>
<!-- Test code coverage might be executed with mvn cobertura:cobertura command -->
<!-- Test code coverage might be executed with mvn cobertura:cobertura command -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<!-- Turning off standard reports as they collide with sphinx -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<reportSets>
<reportSet>
<reports></reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>