Browse Source

Pass the classpath in the -classpath argument. This is required when the weblogic

classpath is used.

PR:	6931


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272617 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 23 years ago
parent
commit
af5ed86d3b
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java

+ 4
- 0
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java View File

@@ -488,6 +488,10 @@ public class WeblogicDeploymentTool extends GenericDeploymentTool {
javaTask.createArg().setLine(compiler);
}
}
javaTask.createArg().setValue("-classpath");
javaTask.createArg().setPath(getCombinedClasspath());
javaTask.createArg().setValue(sourceJar.getPath());
javaTask.createArg().setValue(destJar.getPath());



Loading…
Cancel
Save