Eclipse Plugin development with Kotlin - eclipse-plugin

I'd like to develop an Eclipse Plugin with Kotlin, but I can't find info about how to configure the project. Do you have any hint?

Related

option to create a kotlin multiplatform project not present in idea 2019.3

i want to create a kotlin mp project in intellij idea 2019.3 Community, but the options i see in new project window for kotlin are just jvm|idea and js|idea.
In several articles there are options like mobile shared library | gradle, present even for older versions oj IJIdea.
I already have kotlin in another project, as part of a maven project
any hints?
Make sure you have latest Kotlin plugin installed and Gradle bundled plugin enabled.
See these steps about creating Kotlin MPP project.
gradle plugin was enabled, but still something smelled, so after some time spent enabling/disabling plugins, i decided to enable android support plugin - then after restart idea complained that gradle-java plugin is not enabled, after enabling that (from the error tab link, not the plugin management window in preferences) - the options to create various gradle projects appeared, including the ones for kotlin/multiplatform

Developing Eclipse Plugin with IntelliJ IDEA

I personally prefer the IntelliJ IDEA to develop in Java, but I need to create an Eclipse Plugin for a customer.
Is it possible to develop Eclipse plugins in IDEA? Does anyone have any experience with that kind of thing?

How to write code for IntelliJ - Android Plugin

I am writing a plugin for IntelliJ IDEA that depends on the Android plugin.
The IntelliJ Community Edition source code doesn't seem to include the Android plugin. I want to access the APIs like AndroidFacet and AndroidUtils in my plugin project. How can I go about doing this? I tried pulling code from https://android.googlesource.com/platform/tools/adt/idea/ and adding it to classpath but no luck so far.
Any help will be greatly appreciated.
Edit: The above might be confusing. What i really need is the JARs for the Android plugin so that I can add them to the ClassPath and access stuff like AndroidFacet, etc.
You can read this manual Developing IDEA plugin with dependency on Scala plugin. Change Scala plugin with the android plugin.

How to configure Aspectj for Eclipse

I am trying to configure Aspectj in eclipse but its not working can someone please share the full configuration of aspectj. I also explored different tutorials but of no use if some one has usefull stuff regarding this please share.
Can i download the eclipse ide having builtin support for Aspectj
I don't think Eclipse comes bundled with AspectJ. You can download it here:
http://eclipse.org/ajdt/downloads/
Install it as you would any other Eclipse plugin, e.g. via Help -> Install New Software (in Eclipse 3.7.1).
http://eclipse.org/ajdt/gettingstarted.php
Once installed, you can create AspectJ projects using the New -> Project menu.
Now you will have an AspectJ project that you can write aspects (.aj files) in.
http://eclipse.org/aspectj/doc/released/progguide/starting-aspectj.html#aspects

converting GWT1.7 application to GWT2.0

I am developing a web application in GWT 1.7.Now I am planning to move to GWT 2.0. I am using maven build tool and intellij idea IDE.Can any one tell me the maven plugin for GWT2.0 and how to run/debug using intellij idea IDE?RIght now I am using GWT Mojo plugin http://mojo.codehaus.org/gwt-maven-plugin/ ?
I've provided detailed steps and a pom.xml to use Maven, GWT 2.0 and the Maven GWT Plugin 1.2 in this answer. All the non Eclipse specific steps (i.e. the Maven part) should apply and help you to update from GWT 1.7 to 2.0.
gwt-maven-plugin 1.2 has been released and now full supports GWT 2.0.
I'm not familiar with IntelliJ IDEA. But, they do support maven integration like any other IDE. You can integrate your maven-gwt project like any other one into IntelliJ.