From: dion g. <dio...@us...> - 2004-08-04 07:15:24
|
diongillard 04/08/04 00:15:17 Modified: was5 plugin.jelly Log: Fix typo for maven.was5.ejbDeploy Revision Changes Path 1.8 +2 -1 maven-plugins/was5/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.jelly,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- plugin.jelly 4 Aug 2004 06:30:38 -0000 1.7 +++ plugin.jelly 4 Aug 2004 07:15:16 -0000 1.8 @@ -40,7 +40,7 @@ <!-- "auto-deploy" the ejb jar after the ejb has been created --> <postGoal name="ejb:ejb"> - <j:set var="generate" value="${maven.was5.ejbdeploy}"/> + <j:set var="generate" value="${maven.was5.ejbDeploy}"/> <j:if test="${!empty(generate)}"> <attainGoal name="was5:ejbDeploy"/> <!-- copy jar with deployed code over original --> @@ -135,6 +135,7 @@ <goal name="was5:installApp" description="Install an application on a WebSphere Appserver"> <ant:fail unless="maven.was5.installApp.ear">maven.was5.installApp.ear must be specified</ant:fail> + <assert:assertFileExists file="${maven.was5.installApp.ear}" msg=" ERROR: maven.was5.installApp.ear (${maven.was5.installApp.ear}) doesn't exist."/> <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> |