vmassol 2003/07/09 03:14:01
Modified: src/plugins-build/jboss/xdocs changes.xml
src/plugins-build/jboss project.xml plugin.jelly
Log:
Fixed bug when using JBoss 3.0.4/Tomcat 4.1.12 is used. When
<code>jboss:start</code> is executed, it causes a
<code>NoClassDefFoundError</code>. This was due to the
working directory not being an absolute filename. Thanks to
Willie Wu.
Revision Changes Path
1.12 +7 -0 maven/src/plugins-build/jboss/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/jboss/xdocs/changes.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- changes.xml 4 Jul 2003 06:35:25 -0000 1.11
+++ changes.xml 9 Jul 2003 10:14:01 -0000 1.12
@@ -8,6 +8,13 @@
<body>
<release version="1.2" date="in CVS">
+ <action dev="vmassol" type="fix">
+ Fixed bug when using JBoss 3.0.4/Tomcat 4.1.12 is used. When
+ <code>jboss:start</code> is executed, it causes a
+ <code>NoClassDefFoundError</code>. This was due to the
+ working directory not being an absolute filename. Thanks to
+ Willie Wu.
+ </action>
<action dev="dion" type="fix">
Copy dependencies using artifact path to allow jar overrides to work
</action>
1.10 +4 -0 maven/src/plugins-build/jboss/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/jboss/project.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- project.xml 21 Jun 2003 13:40:26 -0000 1.9
+++ project.xml 9 Jul 2003 10:14:01 -0000 1.10
@@ -52,6 +52,10 @@
<name>James CE Johnson</name>
<email>[EMAIL PROTECTED]</email>
</contributor>
+ <contributor>
+ <name>Willie Wu</name>
+ <email>[EMAIL PROTECTED]</email>
+ </contributor>
</contributors>
<dependencies/>
1.15 +2 -2 maven/src/plugins-build/jboss/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/jboss/plugin.jelly,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- plugin.jelly 5 Jul 2003 08:30:00 -0000 1.14
+++ plugin.jelly 9 Jul 2003 10:14:01 -0000 1.15
@@ -238,8 +238,8 @@
<j:choose>
<j:when test="${isWindows}">
- <ant:exec dir="${maven.jboss.build.bin.dir}" executable="cmd.exe">
- <ant:arg line="/c run.bat"/>
+ <ant:exec dir="${maven.jboss.home}/bin" executable="cmd.exe">
+ <ant:arg line="/c ${maven.jboss.build.bin.dir}/run.bat"/>
</ant:exec>
</j:when>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]