Skip to main content

Posts

Showing posts from September, 2013

Could not launch the product because the associated workspace is currently in use by another Eclipse application

If you are seeing following error at the beginning of the Eclipse or any RCP based product then here is the solution: Error Message: "Could not launch the product because the associated workspace is currently in use by another Eclipse application." or “Workspace in use or cannot be created chose a different one.” Solution :  go to workspace location remove file <workspace location>/.metadata/.lock Reason: Through eclipse, user can create multiple Workspace locations. One Workspace location can be edited by one user at a time. A workspace contains the data related to various project configuration and local file storage. To avoid multiple users to access the same workspace, eclipse is maintaining a ".lock" file inside the Workspace. Eclipse will remove this ".lock" file when you will close the Eclipse. But in some cases, the Eclipse will crash due to some error, due to which it could not able to remove ".lock" file from

How to run Maven from another directory ?

How to run Maven from another directory ? Supposing my Maven project is found in /home/harikr/some/project/location and my current location is /home/harikr/abc/location/ however am I able to run Maven build while not ever-changing to project location cd /some/location/project? Solution : mvn -f  /home/harikr/some/project/location/pom.xml