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"

 
(One intermediate revision by the same user not shown)
Line 13: Line 13:
 
The file .project which can be seen under your project directory. (It is filtered by default by Eclipse)
 
The file .project which can be seen under your project directory. (It is filtered by default by Eclipse)
  
To unfilter .project and .buildpath  
+
To unfilter .project and .buildpath.
 +
 
 +
Click on the Script Exlorer triangle -> Filters
  
 
[[Image:Vjet-project-filters.png]]
 
[[Image:Vjet-project-filters.png]]
 +
 +
Then uncheck *.resources
  
 
[[Image:Vjet-project-uncheck-resources-filter.png]]
 
[[Image:Vjet-project-uncheck-resources-filter.png]]

Latest revision as of 21:01, 12 February 2013

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>

Back to the top