Added back support for WL 7.x. I haven't tested it though. If someone who has WL7 on his machine could test it, that would be great... :-)

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113799 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2003-08-05 10:27:36 +00:00
parent c16c940066
commit 1f59053ef5
2 changed files with 29 additions and 1 deletions

View File

@ -86,7 +86,9 @@
<j:if test="${context.getVariable('cactus.home.tomcat5x') != null}">
<ant:mkdir dir="${cactus.reports.dir}/tomcat5x"/>
</j:if>
<j:if test="${context.getVariable('cactus.home.weblogic7x') != null}">
<ant:mkdir dir="${cactus.reports.dir}/weblogic7x"/>
</j:if>
</goal>
@ -290,6 +292,11 @@
</j:if>
</tomcat5x>
<weblogic7x if="cactus.home.weblogic7x"
dir="${cactus.home.weblogic7x}" port="${cactus.port}"
output="${cactus.reports.dir}/weblogic7x.out"
todir="${cactus.reports.dir}/weblogic7x"/>
</containerset>
<ant:formatter type="plain" usefile="${cactus.junit.usefile}"/>
<ant:formatter type="xml"/>
@ -343,6 +350,12 @@
</ant:fileset>
</j:if>
<j:if test="${context.getVariable('cactus.home.weblogic7x') != null}">
<ant:fileset dir="${cactus.reports.dir}/weblogic7x">
<ant:include name="TEST-*.xml"/>
</ant:fileset>
</j:if>
</ant:junitreport>
<j:if test="${cactus.halt.on.failure}">
@ -444,6 +457,11 @@
</j:if>
</tomcat5x>
<weblogic7x if="cactus.home.weblogic7x"
dir="${cactus.home.weblogic7x}" port="${cactus.port}"
output="${cactus.reports.dir}/weblogic7x.out"
todir="${cactus.reports.dir}/weblogic7x"/>
</containerset>
<ant:formatter type="plain" usefile="${cactus.junit.usefile}"/>
<ant:formatter type="xml"/>
@ -544,6 +562,11 @@
</j:if>
</tomcat5x>
<weblogic7x if="cactus.home.weblogic7x"
dir="${cactus.home.weblogic7x}" port="${cactus.port}"
output="${cactus.reports.dir}/weblogic7x.out"
todir="${cactus.reports.dir}/weblogic7x"/>
</containerset>
<ant:formatter type="plain" usefile="${cactus.junit.usefile}"/>
<ant:formatter type="xml"/>

View File

@ -8,6 +8,11 @@
<body>
<release version="3.1" date="in CVS">
<action dev="vmassol" type="add">
Added back support for WebLogic 7.x (it had somehow been dropped
when we moved to the new Cactus/Ant integration in version 3.0).
Not tested yet (I don't have WL7 on my machine)!
</action>
<action dev="vmassol" type="update">
Update to Cactus 1.5-beta1.
</action>