HADOOP-7289. In ivy.xml, test conf should not extend common conf. Contributed by Eric Yang
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1102940 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5b456040c7
commit
8f57b5102a
|
@ -153,6 +153,9 @@ Trunk (unreleased changes)
|
|||
HADOOP-7285. Refactor the test command to conform to new FsCommand
|
||||
class. (Daryn Sharp via todd)
|
||||
|
||||
HADOOP-7289. In ivy.xml, test conf should not extend common conf.
|
||||
(Eric Yang via szetszwo)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -212,10 +212,10 @@
|
|||
<pathelement location="${build.examples}"/>
|
||||
<pathelement location="${build.tools}"/>
|
||||
<pathelement path="${clover.jar}"/>
|
||||
<path refid="ivy-common.classpath"/>
|
||||
<path refid="ivy-test.classpath"/>
|
||||
<pathelement location="${build.classes}"/>
|
||||
<pathelement location="${test.conf.dir}"/>
|
||||
<path refid="ivy-common.classpath"/>
|
||||
</path>
|
||||
<!--
|
||||
<path id="test.hdfs.classpath">
|
||||
|
|
8
ivy.xml
8
ivy.xml
|
@ -53,7 +53,7 @@
|
|||
<conf name="common" extends="runtime,mandatory,httpclient,ftp,jetty,jdiff"
|
||||
description="common artifacts"/>
|
||||
<!--Testing pulls in everything-->
|
||||
<conf name="test" extends="master,common" description="the classpath needed to run tests"/>
|
||||
<conf name="test" extends="master" description="the classpath needed to run tests"/>
|
||||
|
||||
<!--Private configurations. -->
|
||||
|
||||
|
@ -219,7 +219,7 @@
|
|||
<dependency org="junit"
|
||||
name="junit"
|
||||
rev="${junit.version}"
|
||||
conf="common->default"/>
|
||||
conf="test->default"/>
|
||||
<dependency org="org.apache.rat"
|
||||
name="apache-rat-tasks"
|
||||
rev="${rats-lib.version}"
|
||||
|
@ -247,7 +247,7 @@
|
|||
<dependency org="org.slf4j"
|
||||
name="slf4j-api"
|
||||
rev="${slf4j-api.version}"
|
||||
conf="common->master"/>
|
||||
conf="common->default"/>
|
||||
<dependency org="org.eclipse.jdt"
|
||||
name="core"
|
||||
rev="${core.version}"
|
||||
|
@ -294,7 +294,7 @@
|
|||
<dependency org="org.mockito"
|
||||
name="mockito-all"
|
||||
rev="${mockito-all.version}"
|
||||
conf="common->default">
|
||||
conf="test->default">
|
||||
</dependency>
|
||||
<dependency org="com.jcraft"
|
||||
name="jsch"
|
||||
|
|
Loading…
Reference in New Issue