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

VJET/Migrating from EbayOpenSource VJET

< VJET
Revision as of 21:01, 12 February 2013 by Earlyster.gmail.com (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

Vjet uninstall org.ebayopensource.vjet.png

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)

To unfilter .project and .buildpath.

Click on the Script Exlorer triangle -> Filters

Vjet-project-filters.png

Then uncheck *.resources

Vjet-project-uncheck-resources-filter.png


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>

The .buildpath file needs to be updates:

Before:

<?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>

Copyright © Eclipse Foundation, Inc. All Rights Reserved.