HADOOP-9249. hadoop-maven-plugins version-info goal causes build failure when running with Clover. Contributed by Chris Nauroth.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1440200 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8acfa66897
commit
3e0bc281c8
|
@ -149,9 +149,6 @@ Trunk (Unreleased)
|
||||||
HADOOP-8924. Add maven plugin alternative to shell script to save
|
HADOOP-8924. Add maven plugin alternative to shell script to save
|
||||||
package-info.java. (Chris Nauroth via suresh)
|
package-info.java. (Chris Nauroth via suresh)
|
||||||
|
|
||||||
HADOOP-9245. mvn clean without running mvn install before fails.
|
|
||||||
(Karthik Kambatla via suresh)
|
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
HADOOP-8419. Fixed GzipCode NPE reset for IBM JDK. (Yu Li via eyang)
|
HADOOP-8419. Fixed GzipCode NPE reset for IBM JDK. (Yu Li via eyang)
|
||||||
|
@ -322,6 +319,12 @@ Trunk (Unreleased)
|
||||||
HADOOP-9202. test-patch.sh fails during mvn eclipse:eclipse if patch adds
|
HADOOP-9202. test-patch.sh fails during mvn eclipse:eclipse if patch adds
|
||||||
a new module to the build (Chris Nauroth via bobby)
|
a new module to the build (Chris Nauroth via bobby)
|
||||||
|
|
||||||
|
HADOOP-9245. mvn clean without running mvn install before fails.
|
||||||
|
(Karthik Kambatla via suresh)
|
||||||
|
|
||||||
|
HADOOP-9249. hadoop-maven-plugins version-info goal causes build failure
|
||||||
|
when running with Clover. (Chris Nauroth via suresh)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-7761. Improve the performance of raw comparisons. (todd)
|
HADOOP-7761. Improve the performance of raw comparisons. (todd)
|
||||||
|
|
|
@ -71,6 +71,17 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<!--
|
||||||
|
Skip Clover instrumentation for this module to prevent error finding Clover
|
||||||
|
classes during plugin execution when running a build with Clover enabled.
|
||||||
|
-->
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.atlassian.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-clover2-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<skip>true</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue