GWT plugin for netbeans - netbeans

I have a project written under GWT. I want to run it in the NetBeans environment, but I can't find the org-netbeans-modules-gwt4nb.nbm plugin anywhere.
The link everyone is referring to (https://gwt4nb.dev.java.net) is not working.
Can someone tell me where I can get it?

Related

How to debug SocialEngine through an IDE

I've downloaded SocialEngine source code, added few plugins to the website I'm testing.
Now, I'm trying to customize the plugins' and SocialEngine's code to fit my use cases.
How can I make a change to the source code of any of these plugins through Eclipse and reflect that on my website? I want to be able to debug the source code from Eclipse.
I understand that I need to create a module through SocialEngine SDK and install it via the package manager tool, but, I've already got the module source code for the plugins I mentioned above. So, speaking of a full development IDE like Eclipse, how can I tweak this code and have it deployed to my website and debug through it as well?
Thanks!
For customizations, you should understand, the plugins releases upgrades and bug fixes. So, you should add your work in such ways, that you merge easily with those updates regularly.
For debugging you should understand and follow zend framework application, on which socialengine is built.
Would be better, if you ask specific issues you are having in development.
Then, you would have better answers with insights.
Maybe this is helpful, for now.

AEM error on real time

Is there a way to configure AEM into an IDE like IntelliJ,Eclipse...
So that the IDE shows the errors on my project before I compile it even if I put it outside the source folder like for example the components created.
If possible both the .java and .jsp
I'm not entirely sure what you mean by outside the source folder, but have you taken a look at adobe's documentation?
They have instructions for IntelliJ + AEM with Maven. It also instruct on jsp support as well. It's for 5.6.1 but it should be valid for 6.x as well.
https://docs.adobe.com/docs/en/cq/5-6-1/developing/developmenttools/howto-develop-aem-projects-with-intellij.html
Here's one for Eclipse
https://helpx.adobe.com/experience-manager/using/creating-aem-project-using-eclipse.html
They also have a more generic set of instruction
https://docs.adobe.com/docs/en/cq/5-6-1/developing/developmenttools/how-to-build-aem-projects-using-apache-maven.html#How-To%20Work%20with%20JSPs
Yes, you can maintain CRX data(AEM folders like /etc, /apps, /content, etc) in an IDE like eclipse. This will help you iron out all the compilation errors using features of IDE. Make use of this eclipse plugin called vaultclipse. You can install it from eclipse marketplace.
There is also another plugin called AEM plugin, details on how to use it here.

Is there a proper step by step guide to installing and using PhoneGap?

Is it just me or the documentation for PhoneGap installation is ridiculous? The steps are all over the place and no clear path to installing and using it. I found a couple of decent guides for use on MAC but nothing that is clear for Windows.
Got frustrated and uninstalled everything, eclipse, cordova, ant, android.
I want to just restart fresh with a clean install. Can anyone show me to a guide which has a step by step guide to windows. Or maybe you could guide me to exactly which are the stuff I need to install for phoneGap to work? For example is ant(apache) even needed? Not every guide mentions it.
I believe over all, the steps includes 2 parts. 1 is installing the various components such as eclipse and so on. 2nd is to interlink all these various components.
Not exaggerating but I've been at this for a week plus now and have looked around for a clear instruction and found nothing. Please help.
PS: If PhoneGap can be installed and linked with NetBeans, it would be great to know exactly how. Tnks.
You have only java, javafx in netbeans because you installed netbeans java edition.
Cordova is in the HTML5 package which is included in other editions like java EE edition or php edition.
In your netbeans version, you have to install the plugin:
Tools->Plugins-Available plugins, check HTML5 and click install.
Then you should be able to use the New project->HTML5->Cordova application.
You will still need cordova, android, ant... but the difference is that netbeans should setup everything for you.
Sorry I can't confirm as I have installed everything before netbeans.

Using Eclipse with HTML5 Boilerplate

I just got my new computer and I'm going to learn an IDE fresh. Everyone suggests Eclipse; therefore, I'll go with that. I downloaded Java EE for I may use it later for java programming also. I don't mind the bloat.
What I want to achieve is that every time I create a new website project that HTML5 Boilerplate also gets created as a template to the project. Anyone know how to achieve this?
Also any additional plugins for web dev or anything to do helpful with web development ideas with eclipse would be most appreciated.
If you are using Java EE eventually, I think the best strategy would be creating a Maven archetype. This way once you have your baseline project definition, you can archetype it and create all your subsequent projects from that.
Apache - Guide to creating archetypes
If you don't have Maven yet, you can get it here.
And the Maven Eclipse plugin can be installed from the update site: http://download.eclipse.org/technology/m2e/releases
Finally, since you are new to Eclipse, you can install plugins from Help > Install New Software. Best of luck! I know that's probably a lot to take in.

Need suggestions on which plugin to install from eclipse market?

I am developing a new plugin in eclipse. I need a plugin from internet (for eclipse, of course) which I can dissect and understand its implementation (by looking into plugin.xml etc.). It would help me create my own plugin.
I want your help in suggesting some plug-ins which I download and dissect, so that i can use that logic to make my own plugin?
I will now give an insight to my proposed plugin:::
My plugin would take in some input via a GUI interface from the user and then I should be able to convert all the user input into a text file and trigger a perl script. It sounds sloppy, but I am completely new to Eclipse and Plugins.
I just need some suggestions from you experts.
Thanks a lot!!!
If you download either the Eclipse Classic package or the Eclipse for RCP Developers package, they include source for Eclipse itself. You can use the Eclipse plugins themselves as examples.