Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2TDServiceCreationCommand.java')
-rw-r--r--axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2TDServiceCreationCommand.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2TDServiceCreationCommand.java b/axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2TDServiceCreationCommand.java
index 87378e8a0..5ff07940d 100644
--- a/axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2TDServiceCreationCommand.java
+++ b/axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2TDServiceCreationCommand.java
@@ -10,6 +10,7 @@
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20070426 183046 sandakith@wso2.com - Lahiru Sandakith
+ * 20070507 184740 sandakith@wso2.com - Lahiru Sandakith
*******************************************************************************/
package org.eclipse.jst.ws.axis2.creation.core.command;
@@ -83,6 +84,9 @@ public IStatus execute(IProgressMonitor monitor, IAdaptable info)
.addAnotherNodeToPath(currentDynamicWebProjectDir,
Axis2CreationUIMessages.DIR_RESOURCES);
File currentProjectResourcesDir = new File(currentProjectResourcesDirString);
+ if(!currentProjectResourcesDir.exists()){
+ currentProjectResourcesDir.mkdir();
+ }
FileUtils.copyDirectory(currentProjectResourcesDir, new File(metaInfDirectory));
// Copy the classes directory to the sevices directory

Back to the top