Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "VJET/Migrating from EbayOpenSource VJET"

(New page: == Updating Plugin == You must uninstall the org.ebayopensource version of VJET before installing the org.eclipse.vjet version. If you do not do this you will have duplicate menus and une...)
(No difference)

Revision as of 21:22, 3 December 2012

Updating Plugin

You must uninstall the org.ebayopensource version of VJET before installing the org.eclipse.vjet version. If you do not do this you will have duplicate menus and unexpected results.

This page explains the process for uninstalling

Project Changes Required

The prefix org.ebayopensource.vjet.* has been changed to org.eclipse.vjet.*

The file .project which can be seen under your project directory. (It is filtered by default by Eclipse)

Before

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>ProjectName</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>org.ebayopensource.vjet.eclipse.core.builder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>org.ebayopensource.vjet.core.nature</nature>
	</natures>
</projectDescription>

After

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>ProjectName</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>org.eclipse.vjet.eclipse.core.builder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>org.eclipse.vjet.core.nature</nature>
	</natures>
</projectDescription>
<source>
 
The .buildpath file needs to be updates:
 
Before:
 
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
	<buildpathentry kind="src" path="src"/>
	<buildpathentry kind="con" path="org.eclipse.dltk.mod.launching.INTERPRETER_CONTAINER"/>
	<buildpathentry kind="con" path="org.ebayopensource.vjet.eclipse.core.JSNATIVE_CONTAINER/JS Native Types"/>
	<buildpathentry kind="con" path="org.ebayopensource.vjet.eclipse.core.BROWSER_CONTAINER/Browser SDK"/>
	<buildpathentry kind="con" path="org.ebayopensource.vjet.eclipse.core.VJO_CONTAINER/VJO LIB"/>
	<buildpathentry combineaccessrules="false" kind="prj" path="/AnotherProject"/>
</buildpath>

After

<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
	<buildpathentry kind="src" path="src"/>
	<buildpathentry kind="con" path="org.eclipse.dltk.mod.launching.INTERPRETER_CONTAINER"/>
	<buildpathentry kind="con" path="org.eclipse.vjet.eclipse.core.JSNATIVE_CONTAINER/JS Native Types"/>
	<buildpathentry kind="con" path="org.eclipse.vjet.eclipse.core.BROWSER_CONTAINER/Browser SDK"/>
	<buildpathentry kind="con" path="org.eclipse.vjet.eclipse.core.VJO_CONTAINER/VJO LIB"/>
	<buildpathentry combineaccessrules="false" kind="prj" path="/AnotherProject"/>
</buildpath>

Back to the top