HADOOP-7520. Fix to add distribution management info to hadoop-main. Contributed by Alejandro Abdelnur
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1154350 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ca4b2f108a
commit
3864369a58
|
@ -454,6 +454,9 @@ Trunk (unreleased changes)
|
|||
|
||||
HADOOP-7508. Compiled nativelib is in wrong directory and it is not picked
|
||||
up by surefire setup. (Alejandro Abdelnur via tomwhite)
|
||||
|
||||
HADOOP-7520. Fix to add distribution management info to hadoop-main
|
||||
(Alejandro Abdelnur via gkesavan)
|
||||
|
||||
HADOOP-7515. test-patch reports the wrong number of javadoc warnings.
|
||||
(tomwhite)
|
||||
|
|
|
@ -441,6 +441,11 @@
|
|||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.1.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
|
|
11
pom.xml
11
pom.xml
|
@ -53,6 +53,11 @@
|
|||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.2-beta-3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
|
@ -103,6 +108,12 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>true</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
|
|
Loading…
Reference in New Issue