Imagine I have some configurations
<configurations defaultconfmapping="default">
<conf name="default" extends="master,runtime"/>
<conf name="compile" visibility="private"
description="artifacts needed to compile the application"/>
<conf name="unittest" extends="compile"
description="the classpath needed to run unittests"/>
<conf name="systemtest" extends="compile"
description="the classpath needed to run systemtests"/>
<conf name="test" extends="unittest,systemtest"
description="the classpath needed to run tests"/>
<conf name="master" description="contains the artifact but no
dependencies"/>
<conf name="runtime" description="runtime but not the artifact"/>
</configurations>
Then I include them
<configurations>
<include file="../standard.xml" />
</configurations>
Can I override an included configuration, giving it different extensions?
<conf name="unittest" extends="jaxb" />
<conf name="systemtest" />
-Steve