Skip to content

Commit c70312e

Browse files
committed
Use systemPropertyVariables instead of systemProperties
1 parent 61ba4f1 commit c70312e

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

  • hadoop-hdfs-project/hadoop-hdfs-rbf
  • hadoop-tools

hadoop-hdfs-project/hadoop-hdfs-rbf/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,12 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
185185
<groupId>org.apache.maven.plugins</groupId>
186186
<artifactId>maven-surefire-plugin</artifactId>
187187
<configuration>
188-
<systemProperties>
188+
<systemPropertyVariables>
189189
<property>
190190
<name>derby.stream.error.file</name>
191191
<value>${project.build.directory}/derby.log</value>
192192
</property>
193-
</systemProperties>
193+
</systemPropertyVariables>
194194
</configuration>
195195
</plugin>
196196
<plugin>
@@ -246,10 +246,10 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
246246
<goal>run</goal>
247247
</goals>
248248
<configuration>
249-
<target>
249+
<task>
250250
<copy file="src/main/resources/hdfs-rbf-default.xml" todir="src/site/resources"/>
251251
<copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
252-
</target>
252+
</task>
253253
</configuration>
254254
</execution>
255255
</executions>

hadoop-tools/hadoop-distcp/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
<include>**/Test*.java</include>
143143
</includes>
144144
<redirectTestOutputToFile>true</redirectTestOutputToFile>
145-
<systemProperties>
145+
<systemPropertyVariables>
146146
<property>
147147
<name>test.build.data</name>
148148
<value>${basedir}/target/test/data</value>
@@ -159,7 +159,7 @@
159159
<name>org.apache.commons.logging.simplelog.defaultlog</name>
160160
<value>warn</value>
161161
</property>
162-
</systemProperties>
162+
</systemPropertyVariables>
163163
</configuration>
164164
</plugin>
165165
<plugin>

hadoop-tools/hadoop-federation-balance/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
<include>**/Test*.java</include>
153153
</includes>
154154
<redirectTestOutputToFile>true</redirectTestOutputToFile>
155-
<systemProperties>
155+
<systemPropertyVariables>
156156
<property>
157157
<name>test.build.data</name>
158158
<value>${basedir}/target/test/data</value>
@@ -169,7 +169,7 @@
169169
<name>org.apache.commons.logging.simplelog.defaultlog</name>
170170
<value>warn</value>
171171
</property>
172-
</systemProperties>
172+
</systemPropertyVariables>
173173
</configuration>
174174
</plugin>
175175
<plugin>

0 commit comments

Comments
 (0)