When I am installing my project I get an next problem:
install-project:
[emc.installer] [WARN] An existing project 'MyProject' found in the workspace. Project will be deleted
[emc.installer] An existing project 'MyProject' found in the workspace. Project will be deleted
After that his deleted my dar file and then exception like cannot find dar file.
Here my ant task for install:
<?xml version="1.0"?>
<project name="MyProject" default="install-project">
<target name="install-project" description="Install the project to the specified repository. dfc.properties must be configured">
<emc.install dar="deploy_workspace/MyProject/bin/dar/MyProject.dar" docbase="docbase" username="username" password="password" domain="" />
</target>
</project>