HADOOP-18718. Fix several maven build warnings (#5592). Contributed by Dongjoon Hyun.

Reviewed-by: Gautham B A <gautham.bangalore@gmail.com>
Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
(cherry picked from commit fb16e00da0)

Conflicts:
	hadoop-tools/hadoop-federation-balance/pom.xml
This commit is contained in:
Dongjoon Hyun 2023-06-10 23:08:13 -07:00 committed by Wei-Chiu Chuang
parent 936e9e15d0
commit 20d073cb2c
No known key found for this signature in database
GPG Key ID: B362E1C021854B9D
13 changed files with 23 additions and 48 deletions

View File

@ -180,7 +180,6 @@
<configuration>
<executable>${shell-executable}</executable>
<workingDirectory>${project.build.testOutputDirectory}</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>ensure-jars-have-correct-contents.sh</argument>
<argument>${hadoop-client-artifacts}</argument>

View File

@ -190,7 +190,6 @@
<configuration>
<executable>${shell-executable}</executable>
<workingDirectory>${project.build.testOutputDirectory}</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>ensure-jars-have-correct-contents.sh</argument>
<argument>${hadoop-client-artifacts}</argument>

View File

@ -978,7 +978,6 @@
</goals>
<configuration>
<executable>${basedir}/../../dev-support/bin/releasedocmaker</executable>
<requiresOnline>true</requiresOnline>
<arguments>
<argument>--index</argument>
<argument>--license</argument>

View File

@ -169,7 +169,6 @@
<executable>${shell-executable}</executable>
<workingDirectory>${project.build.directory}
</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>
${basedir}/../dev-support/bin/dist-layout-stitching
@ -188,7 +187,6 @@
<configuration>
<executable>${shell-executable}</executable>
<workingDirectory>${basedir}</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>
${basedir}/../dev-support/bin/dist-tools-hooks-maker
@ -209,7 +207,6 @@
<executable>${shell-executable}</executable>
<workingDirectory>${project.build.directory}
</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>${basedir}/../dev-support/bin/dist-tar-stitching
</argument>

View File

@ -141,12 +141,9 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>derby.stream.error.file</name>
<value>${project.build.directory}/derby.log</value>
</property>
</systemProperties>
<systemPropertyVariables>
<derby.stream.error.file>${project.build.directory}/derby.log</derby.stream.error.file>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
@ -202,10 +199,10 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<goal>run</goal>
</goals>
<configuration>
<tasks>
<target>
<copy file="src/main/resources/hdfs-rbf-default.xml" todir="src/site/resources"/>
<copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
</tasks>
</target>
</configuration>
</execution>
</executions>

View File

@ -313,10 +313,10 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<goal>run</goal>
</goals>
<configuration>
<tasks>
<target>
<copy file="src/main/resources/hdfs-default.xml" todir="src/site/resources"/>
<copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
</tasks>
</target>
</configuration>
</execution>
</executions>

View File

@ -135,10 +135,10 @@
<goal>run</goal>
</goals>
<configuration>
<tasks>
<target>
<copy file="src/main/resources/mapred-default.xml" todir="src/site/resources"/>
<copy file="../../../hadoop-common-project/hadoop-common/src/main/xsl/configuration.xsl" todir="src/site/resources"/>
</tasks>
</target>
</configuration>
</execution>
</executions>

View File

@ -328,7 +328,6 @@
<configuration>
<executable>${shell-executable}</executable>
<workingDirectory>${project.build.directory}</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>${project.parent.basedir}/../dev-support/bin/dist-copynativelibs</argument>
<argument>--version=${project.version}</argument>

View File

@ -71,13 +71,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<excludeFilterFile>${basedir}/src/main/findbugs/exclude.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>

View File

@ -136,24 +136,12 @@
<include>**/Test*.java</include>
</includes>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<systemProperties>
<property>
<name>test.build.data</name>
<value>${basedir}/target/test/data</value>
</property>
<property>
<name>hadoop.log.dir</name>
<value>target/test/logs</value>
</property>
<property>
<name>org.apache.commons.logging.Log</name>
<value>org.apache.commons.logging.impl.SimpleLog</value>
</property>
<property>
<name>org.apache.commons.logging.simplelog.defaultlog</name>
<value>warn</value>
</property>
</systemProperties>
<systemPropertyVariables>
<test.build.data>${basedir}/target/test/data</test.build.data>
<hadoop.log.dir>target/test/logs</hadoop.log.dir>
<org.apache.commons.logging.Log>org.apache.commons.logging.impl.SimpleLog</org.apache.commons.logging.Log>
<org.apache.commons.logging.simplelog.defaultlog>warn</org.apache.commons.logging.simplelog.defaultlog>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>

View File

@ -367,10 +367,10 @@
<goal>run</goal>
</goals>
<configuration>
<tasks>
<target>
<copy file="src/main/resources/yarn-default.xml" todir="src/site/resources"/>
<copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
</tasks>
</target>
</configuration>
</execution>
</executions>

View File

@ -169,9 +169,9 @@
<goal>run</goal>
</goals>
<configuration>
<tasks>
<target>
<copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
</tasks>
</target>
</configuration>
</execution>
</executions>

View File

@ -498,6 +498,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>${cyclonedx.version}</version>
</plugin>
</plugins>
</build>
@ -656,6 +657,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
</goals>
</execution>
</executions>
<configuration>
<outputFormat>xml</outputFormat>
</configuration>
</plugin>
</plugins>
</build>