Skip to content

Commit

Permalink
MONDRIAN: Fixes an issue in subfloor where Cobertura artifacts would …
Browse files Browse the repository at this point in the history
…cause a conflict because of the Ivy retrieve patters.

[git-p4: depot-paths = "//open/mondrian-release/3.2/": change = 14087]
  • Loading branch information
lucboudreau committed Feb 3, 2011
1 parent cd2e0c0 commit 59bd3c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions subfloor.xml
Expand Up @@ -1442,7 +1442,7 @@ TYPICAL TARGET SEQUENCE
<target name="cobertura.install" depends="cobertura.download">
<path id="cobertura.classpath">
<fileset dir="${cobertura.build.cache.dir}">
<include name="*.jar" />
<include name="**/*.jar" />
</fileset>
</path>
<taskdef classpathref="cobertura.classpath" resource="tasks.properties" />
Expand All @@ -1461,7 +1461,7 @@ TYPICAL TARGET SEQUENCE
<available classname="net.sourceforge.cobertura.ant.InstrumentTask">
<classpath>
<fileset dir="${cobertura.build.cache.dir}">
<include name="*.jar" />
<include name="**/*.jar" />
</fileset>
</classpath>
</available>
Expand All @@ -1480,7 +1480,7 @@ TYPICAL TARGET SEQUENCE
organisation="net.sourceforge.cobertura"
module="cobertura"
revision="1.9"
pattern="${cobertura.build.cache.dir}/[module].[ext]" />
pattern="${cobertura.build.cache.dir}/[organisation]/[module]/[revision]/[type]s/[artifact]-[revision].[ext]" />
</target>


Expand Down

0 comments on commit 59bd3c5

Please sign in to comment.