eclipse-plugin

How to quickly copy the current editing file name or full file path in Eclipse (Luna)?

天涯浪子 提交于 2021-02-07 11:53:06
问题 This 'solution' doesn't look to work any longer in the Luna version: Copy path/file name in Eclipse to clipboard This is actually a must have feature for a rich IDE! 回答1: You can use start explorer (alternate link) or Copy path plugin. Short cut key to copy path to clipboard in star explorer is : Ctrl + Alt + C Standard eclipse eclipse doest have such key. You can select resource in Package/Project/Navigator view and press Alt + Enter to open property dialog and then copy path from here. 回答2:

Installing plugin into eclipse using command line

梦想与她 提交于 2021-02-06 20:02:04
问题 I have an update site, and got the directory which contains the features and plugins How to install the plugin in eclipse application using the command line ? I want to automate this process 回答1: You can invoke p2 director application using something like this: eclipsec.exe -application org.eclipse.equinox.p2.director -repository http://download.eclipse.org/releases/galileo/ -installIU org.eclipse.cdt.feature.group -destination d:/eclipse/ -profile SDKProfile Here is also link to p2 wiki. 来源:

Installing plugin into eclipse using command line

依然范特西╮ 提交于 2021-02-06 20:00:13
问题 I have an update site, and got the directory which contains the features and plugins How to install the plugin in eclipse application using the command line ? I want to automate this process 回答1: You can invoke p2 director application using something like this: eclipsec.exe -application org.eclipse.equinox.p2.director -repository http://download.eclipse.org/releases/galileo/ -installIU org.eclipse.cdt.feature.group -destination d:/eclipse/ -profile SDKProfile Here is also link to p2 wiki. 来源:

Show menus from an existing plugin in a custom Perspective

China☆狼群 提交于 2021-01-29 07:54:06
问题 I'm packaging my own Eclipse product. I'm including a third party plugin, PluginA, whose menu contribution is only displayed when the active perspective is Debug. I'd like this menu to be displayed also in a perspective I've created, MyPerspective, from my own plugin, PluginB. I can't modify PluginA, but I can see the plugin.xml manifest, shown below, which shows how it configures it's menus. Its using the menu's visibleWhen attribute and checking the activePerspective is equal to

Unable to install WildFly/ JBoss Server in Eclipse IDE Photon Release Candidate 3 (4.8.0RC3)

一世执手 提交于 2021-01-29 07:13:35
问题 I was trying to install WildFly/JBoss Server in Eclipse IDE Photon Release Candidate 3 (4.8.0RC3) but I'm getting an error . I have attached the screenshot for the same. Would somebody help me out here in this issue? 回答1: I've had the same problem. In Eclipse -> Help -> Eclipse Marketplace, search for "TM Terminal". Uninstall it, restart Eclipse and try to define a new server again. It will now install Wildfly, at least for me it worked. 来源: https://stackoverflow.com/questions/52699510/unable

Conflicting project in Xtext mwe2 workflow

守給你的承諾、 提交于 2021-01-29 03:15:20
问题 I have a Xtext DSL that builds successfully from inside eclipse and maven and is included in a complex multi-plugin RCP application. Yet, whenever the MWE2 workflow is executed the log is full of warnings of the form: [INFO] 281 [main] WARN lipse.emf.mwe.utils.StandaloneSetup - Skipping conflicting project org.eclipse.e4.core.contexts at 'archive:file:/C:/userdir/.m2/repository/p2/ osgi/bundle/org.eclipse.e4.core.contexts/1.3.100.v20140407-1019 /org.eclipse.e4.core.contexts-1.3.100.v20140407

How To Install Atlassian Connector On Eclipse Photon 4.8.x Version

微笑、不失礼 提交于 2021-01-28 18:11:05
问题 I can not download Atlassian connector for eclipse photon 4.8.0 version. It support Installation via the Eclipse Marketplace for Eclipse 3.7 (Indigo), 4.2 (Juno), 4.3 (Kepler), 4.4 (Luna) But not Photon. This site is supporting download https://confluence.atlassian.com/ideplugin/atlassian-connector-for-eclipse/installation-and-upgrade-guide-for-the-eclipse-connector/installing-the-eclipse-connector How can I plugin it to Photon? 回答1: Although the development of the plug-in has been

Scala: Importing packages into package objects

你说的曾经没有我的故事 提交于 2021-01-28 08:08:47
问题 I'm having trouble importing packages into package objects. It didn't seem to work in Eclipse and so I switched to intellij. At one point the feature seemed to be working and so I created package objects for most packages. Now it doesn't seem to be working at all. Here's a package object in file package.scala, the package file itself compiles fine: package rStrat.rSwing package testSw //Edited for clarity object testSw { import rStrat._ import rSwing.topUI._ } and here's a class file from the

Error while Installing TestNG Eclipse Plugin 6.14.3 Version

☆樱花仙子☆ 提交于 2021-01-28 05:30:35
问题 I am getting the following error while installing TestNG plugin( 6.14.3) in Eclipse. Missing requirement: TestNG Eclipse Support 6.14.3.201902250526 (org.testng.eclipse 6.14.3.201902250526) requires 'bundle org.eclipse.jdt.launching 3.10.0' but it could not be found Cannot satisfy dependency: From: TestNG 6.14.3.201902250526 (org.testng.eclipse.feature.group 6.14.3.201902250526) To: org.testng.eclipse [6.14.3.201902250526] I am using Eclipse Oxygen- March Edition. Could anyone please help me

How to programmatically refresh an Eclipse view, or RSE file subsystem?

主宰稳场 提交于 2021-01-28 04:21:40
问题 How can I programmatically update an Eclipse view? (I suppose this might not need to be specific to RSE?). Background: I use Remote System Explorer (RSE) for Eclipse, do some stuff by executing remote commands via SSH, which creates new files on the remote host. I realized that the SFTP file listing in the Remote systems view does not automatically get updated to show the newly created file. I have managed so far to get the relevant view, like so: IWorkbench workbench = PlatformUI