How to add files to the root of an Eclipse RCP app? - eclipse-rcp

I would like to know if is possible(and how) to add files to the root of an Eclipse RCP app.
I have an AppManual.pdf and i would like to distribute in the root of the app.

Check out http://help.eclipse.org/galileo/topic/org.eclipse.pde.doc.user/tasks/pde_rootfiles.htm

Related

‘Web App Library’ folder missing in Eclipse

In my dynamic web page under Libraries, I’m missing ‘Web App Library’. I tried right clicking on my project -> java build path -> removed ‘Web App Libraries’ -> add library ‘Web App Libraries’, but nothing shows under the library.
The ‘Web App Libraries’ will show in the Java build path.'Java Build Path'
but not under the Libary folder. image01
I am trying to set up mysql-connector-java in WEB-INF / lib. Like this image02. This is also the correct build path I am trying to do image03.
Thanks !
You have to add the Libraries under the library folder by yourself. Try drag drop or Add JAR/Folder option.

Can't set WorkspaceProject root folder as project directory

In Liferay Developer Studio I have created Liferay modules in the past, but now I can't seem to be able to create any:
Whatever the name I enter, I am told:
Can't set WorkspaceProject root folder as project directory.
What am I doing wrong?
The project cannot be inside liferay-workspace, it is its base folder. It needs to be inside theme or modules folder.
Then it will a create project for you over there once you click finish.
I ran into the same problem with Liferay Developer Studio 3.1.2.
If you set your Liferay Workspace to be the same as the Eclipse workspace, you will face this issue.
I solved the problem by:
deleting the default "liferay-workspace" and then creating a "workspaces" folder for Eclipse and a "Workspace1" folder for liferay (within Studio).
Within Studio, the root folder is now called "Workspace1" and I can set up gradle.properties to specify where the plugins should be deployed.
Modules can be created without issues now.

Linked Files and Folder in IntelliJ

As previous Eclipse user switched to IntelliJ I would like to be able to access folder external to my project from inside the IDE, while developing.
In Eclipse I was using the feature Creating linked resources.
I wonder if there is any feature in IntelliJ that helps me to access external files and folder in a similar way (for instance, if I want to edit the configuration of my application server which is located outside my project).
Yes you can do it by adding an new content root in your module.
You do that from
Project Structure (alt+ctrl+shift+s) - Modules - "My-Module" - + Add Content root
Now you have the contents of the added folder available in your project.
I was searching for a way to get the asset folder link working in IntelliJ as it was working in Eclipse and I found following link in the wikis of libgdx itself.
Linking the asset directories
It describes basically three approaches:
Just copy the asset folder into the desktop folder. (BAD)
Use the asset folder in the android project as working directory for the desktop project through 'Run-Configurations'. (GOOD)
Create a symbolic-link (GOOD)
I tested the 2nd option and it's working fine for me.

Install IDE helper file for netbeans

I'm searching for auto complete way for Laravel 4 and found this
but i don't know how to use it , i have net beans 7.2 ,so how to install the file ?
Just put the IDE helper file somewhere in your project directory and open the project in NetBeans, it will index the file and you'll be good to go. I leave it in the root of my app directory.
I use this file: https://gist.github.com/barryvdh/5227822
I downloaded this helper (https://gist.github.com/barryvdh/5227822#) and placed it in the root directory of the laravel project folder. Restarted the netbeans. It is working for me.

Trying to add png files to Midlet project in netbeans

I'm creating a app for nokia using Netbeans v7. I cannot figure out how to add files to the project, such as graphic images. Also I do not see a res folder like eclipse has.
I'm assuming there must be a way to do this
-Ted
Create res folder in the project folder and put the files in that folder, It's action will be same as eclipse.