Gradle projects vs. Eclipse projects? [closed] - java

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I found an interesting open-source layout library on Github which I'd like to incorporate into an Android project I'm working on in Eclipse. However, I noticed that the library in question seems to have been developed using Gradle, which I don't have. I'm not sure what IDE was used to develop the library, but in any case, I'm not familiar with Gradle at all... Are Gradle-d projects fully compatible with non-Gradle-d Eclipse? Would it depend on the IDE used? (In which case, how can one tell what was used to develop it?)
What are the steps (if any) I would need to take to properly incorporate this library? Would I need to install & run certain plugins, for example?
Thank you very much for your help.

Gradle is the build system that Android Studio uses (the new IDE that is being developed by Google for Android development). You can use the Gradle Eclipse plugin to load Gradle projects into Eclipse.

Related

how I create a Java web application in visual studio code? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I would like to know if there is any command to create a Java Web Project like the command Create Java Project , in Visual Studio Code.
I need to create a Java Web Application from scratch and I don't know the folder structure that Visual Studio Code uses.
Thanks
There is no direct template available in Visual Studio Code that does this. One option is to clone an existing GIT repo with a skeleton that matches the stack you need. For example like they explain in Java Web Apps with Visual Studio Code.
Another option is you visit a generator like JHipster or Yeoman and let them generate a project and folder structure for you which you in turn load in Visual Studio Code. Note that Visual Studio Code can load any folder structure and does not mandate a folder structure itself.
P.s. you might need to install a number of extensions in Visual Studio Code to work properly with Java based web projects. A quick scan reveals plenty of those in the marketplace.

create a project in intellij IDEA [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
After installing intelliJ IDEA, when I create a new project, I'm presented with this:
But those pages should be opened with JAVA EE :
Should I install anything else?
Edit.: Understood what you mean - I managed to restore some of the sections in the Java by enabling corresponding plugins: Hibernate, Google App Engine, etc.
So, you need to do the same and enable plugins that you want.
if i understand, you don't see the Java EE plugin in your version of intellij.. if it is the case, i think you have to continue ( Next till your project opens). once it's done go to File -> Settings ->Plugins.
you should see this.
Java EE plugins.
this is the list of plugins you need.

How get Eclipse src and rebuild (compile) it for a new language? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I try to recompile the eclipse src to use the ide ui for a new language or other interest).
how can I do it ?
Attempting to modify the existing Eclipse Java code for a new language would be an enormous undertaking.
If you want to add support for a new language to Eclipse look at using a tool such as Eclipse xText to build Eclipse plugins for your language.
If you are looking for the source code of eclipse, it is available here under "platform"
https://git.eclipse.org/c/?q=platform
Probably what you are trying to do is reuse the GUI components that eclipse is built on top of.
http://wiki.eclipse.org/Rich_Client_Platform
If it is for a new language, you should definitively have a look at XText. It's a framework to develop new language support in eclipse.
http://www.eclipse.org/Xtext/

Problems adding external library to Android Studio 0.3.6 [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Today I started working with Android Studio 0.3.6 and I need to export a library to my project. I found this question and I tried the different ways to add an external library but when I try to import it does not find the library namespaces.
If you read my answer on Adding external library in Android studio 0.3.6 it should give you the most up-to-date information for 0.3.6.
Sorry, I know it's confusing, and there's conflicting information out there. That's because the right functionality is slowly rolling out in Android Studio, and some of the functionality that was there didn't do the right thing, meaning developers had to come up with complex workarounds. Depending on what version of Android Studio was out at the time various Stack Overflow questions were asked, you may get different advice that no longer applies.
Currently most features of Android Studio seems to be broken. I had the same issue and came to a real final solution: avoid Android Studio and use the origin IDE.

Using JavaFX for making a Eclipse Plugin? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am planning to develop a rich set of plugins for Eclipse which would involve 3D Graphics rendering inside Eclipse.
Is JavaFX a good technology choice for developing a Eclipse Plugin?
Is there some other rich client technology that I am missing out on and which can be used to develop Eclipse Plugins (other than SWT and JFace)?
Eclipse 4, the new major release of eclipse, (4.2 due this summer) is supposed to support non-swt frontends in RCP/Plugin development.
However I am not sure how far along is the work to support javafx rendering.
You can find some info on E4 + JavaFX on Tom Schindl's blog
http://tomsondev.bestsolution.at/2011/10/17/efxclipse-0-0-7-released/ and
http://efxclipse.org/
Maybe Lars Vogel has also written something about this, I am not sure. Anyways Lars is IMO the best source on the internet when it comes to E4
http://www.vogella.de and
http://www.vogella.de/articles/Eclipse4RCP/article.html
Anyways, Eclipse 4 is the way to go/research if you need RCP without SWT. I do not think this is doable in Eclipse 3.x at all.
http://wiki.eclipse.org/E4
I've just released a step by step tutorial how to use JavaFX inside an Eclipse View. See https://wiki.eclipse.org/Efxclipse/Tutorials/Tutorial2

Categories

Resources