go lang plugin for Intellij IDEA 14.0.x - intellij-idea

Is it possible to setup go language pluing for Intellij IDEA 14.0.3 version?
I tried to download the binary plugin (jar) from https://plugins.jetbrains.com/plugin/5047?pr=idea but the version 0.9.15.3 listed here is old and does not recognize GOROOT and GOPATH.
I tried to build the latest plugin using sources from https://github.com/go-lang-plugin-org/go-lang-idea-plugin using Intellij but failed to setup the SDK.
Is there a latest binary version of the go lang plugin available?

Update to IDEA 14.1+ or use the IntelliJ Community.
Original answer:
You can use the free version of IntelliJ Community with the latest version of the plugin and everything should work fine. Also, Android Studio for example is compatible with the plugin as well.
Unfortunately the plugin has some internal dependencies which makes it hard to port back and maintain for multiple IDEA versions. Hope this helps

It might be not the exact answer your are looking for but their is a separate IDE for go developer . it has some unique features you must try GOLAND First month is free.

I also faced up this problem couple days ago. You can download nightly version of go plugin from this link.
You must install this plugin via browse your download folder not repository

Related

Problem in running a project with aspectJ in IntelliJ IDEA 2022.2.3 (Community Edition)

I am trying to run a project with aspectJ, rather than Java, in IntelliJ IDEA. I had done it before by simply putting "aspectj-1.9.6" in a "Lib" folder and setting the folder "as Library". But I tried it again today and it is not working. I think it might be because I have updated my IntelliJ to version "2022.2.3". I saw in this link that for intelliJ version "2021.1", one should select "ajc" as the project compiler in IntellJ. But it seems that there is no such compiler option in IntelliJ version "2022.2" (as I looked at this link and also searched in this link).
I also tried to install and enable "AspectJ weaver" plugin, but I encounter the following error: "Plugin 'AspectJ weaver' failed to initialize and will be disabled. Please restart IntelliJ IDEA.". Someone has had the same problem in this post, but the answer doesn't work for me, as it refers to this link, which is not compatible with IntelliJ version 2022.2.3:
So, I wonder whether aspectJ is not supported any more in IntelliJ?
Does any one has any suggestion that I could use it with this version of IntelliJ? I do really appreciate any help.
Thanks in advance
IntelliJ IDEA is compatible with AspectJ. I am running the plugin on 2022.2.3 without any problems. But I use IDEA Ultimate, you use Community. Did you notice this in your screenshot?
Compatible with IntelliJ IDEA Ultimate

Cannot add Maven archetype in IntelliJ

I'm trying to create a new Karate project in IntelliJ, and am attempting to add an archetype to the Maven list. However, when I enter all the required fields, the window just disappears and the list of archetypes is unchanged. I've found that this is the same for any value I enter into the fields, not just the ones for the specific archetype I am trying to create. How can I avoid this problem?
I have no idea, this is the first time I've heard of this problem. It will be great if you can contribute research or code to fix this, and I'll gladly take requests to update the documentation.
As a workaround, I suggest you create a project using the maven command-line as described here: https://github.com/karatelabs/karate#quickstart
I was able to add the karate archetype by using an older version of IntelliJ. The older version I have tried is IntelliJ Community Version 2021.1.3
you can find it and download it here based on your Operating System.
https://www.jetbrains.com/idea/download/other.html
After that, I just added the karate archetype into that version 2021.1.3 IntelliJ.
Then launch the latest IntelliJ.
If you were to make a new Project, with karate Archetype, on the latest version of IntelliJ that I have now IntelliJ Community Version 2021.2.4 It won't be shown there. Although the project is running on karate.

How to copy module ('com.intellij.modules.java') integrated into Intellij to other JetBrain's product?

After downloading and importing plugin "Fortify Analysis" to IntelliJ ewerything is working, but when I try to do the same plugin into e.g. PyCharm I see error message like that:
In IntelliJ's documentation I see that the module 'com.intellij.modules.java' is built into IntelliJ. On the other hand support from the company which is responsible for the plugin "Fortify Analysis" are telling me that their plugin should work on PyCharm (I'm using version according to their documentation) and the problem I see is not connected with their product.
I've also tried the solution to comment the line:
<depends>com.intellij.modules.java</depends>
in plugin zip file: META-INF/plugin.xml
I tried to find the module and copy manually but I can't find the module file after downloading IntelliJ IDEA Community Edition.2020.3.4.tag.gz.
I've also tried to install every module I can find in repository apt-cache search intellij:
sudo apt-get install libintellij-core-java libgradle-plugins-java libintellij-extensions-java libintellij-platform-api-java libintellij-platform-impl-java libintellij-utils-java libtrove-intellij-java
But it didn't solved my problem.
So the only solution I see is to copy the plugin from IntelliJ to PyCharm, but I don't know how to do this?
Bad news: I think that you misunderstood the documentation of the manufacturer of the plugin compatibility.
The documentation you mentioned lists the "Fortify Analysis Plugin" only compatible with Android Studio 4.x and IntelliJ IDEA 2020.x, but the "Fortify Remediation Plugin" in addition also compatible with PyCharm 2020.x and WebStorm 2020.x
At least your screenshot shows the "Fortify Analysis" plugin, so that's not compatible with PyCharm according to the manufacturer.

Can't find C/C++ IntelliJ IDEA Plugin

I'm trying to add a c/c++ plugin to IntelliJ IDEA, so I went to plugins and searched for it but couldn't find it.
Did they remove it and replace it with their new IDE cLion? Is it no longer supported or what?
Looks like the version of your IntelliJ IDEA is newer than what the C/C++ plugin supports. If you look at the plugin page you can see that builds from 139.1 until 142 are compatible. And if you look here you can see that build 141 is IntelliJ 14.1 and IntelliJ IDEA 15 is numbered 143. So my guess is you are using IntelliJ IDEA 15 or 16 EAP and therefore the plugin is not shown when you search for it.
Simply download the cpp plugin of the old 14 version located here:
https://plugins.jetbrains.com/plugin/1373-c-c-
Then edit the file CppTools/META-INF/plugin.xml and replace the "until-build" value in line 5 to something like until-build="170.0"
And this works perfectly :)
One should really note that the "C/C++" plugin available in the IntelliJ Plugin Repository is actually not developed by Jetbrains, but by a third party called AdvancedTools, and has long not been updated. I'm not sure if that is related to the release of CLion, e.g. IntelliJ bought out the plugin to serve as the foundation of CLion or whatnot.
As listed in the CLion FAQ page, there is currently no official standalone plugin for C/C++ editing available for IntelliJ IDEA. Just as with some other products such as Jetbrains AppCode, Jetbrains are currently keeping CLion as an exclusively paid product, without a free community edition, as indicated in this forum post.
The post also confirmed that a plugin for IntelliJ IDEA might be coming in the future, but is currently (Jan 2018) not a priority for JetBrains.
So yeah for now the only way to get decent C/C++ support within the IntelliJ ecosystem is to use/buy JetBrains CLion.
Download latest version of c/c++ extension from link: https://plugins.jetbrains.com/plugin/1373-c-c-
then open that CppTools.zip inside META-INF folder open file plugin.xml modify line five until-build="" from your own intellij idea build. Go to Help --> About in Your Intellij idea.
plugin.xml file screenshot:
Now Go to File --> Settings --> Plugins --> Install plugins from Disk, browse ypur edited/ modified CppTools.zip.
I faced this problem before and i figure out that the software i install it was old and not update, so try to see the plugin version and see is that plugin version compatible with your intellij-idea, if not check update for the intelli-idea ,the developers fix many problems in every update ,then download it.
you can check compatibility from this page.
Here
Click on Preferences -> Plugins -> Browse Repositories and search for it

Looking for a MyBatis plugin for IntelliJ Idea 14

I'm looking for a current MyBatis plugin for IntelliJ Idea 14. I previously used one hosted by Seventh7 but that is no longer listed (and its git is a 404). The main thing I'm looking for is decent linking between my classes that extend SqlSessionDaoSupport (my DAO classes) and their matching xml files (not using annotation driven).
Any suggestions?
As far as I know the latest free version was v2.34 and it was applied to IDEA v141.177 till v141.179 (as described in file plugin.xml inside jar). That's why this plugin is no listed in IDEA. After this author released paid version and closes free access to the repo
But there is a free fork here:
https://github.com/phoenix/intellij-mybatis-plugin (I love github and open source :) )
Short instruction how to install it:
Download intellij-mybatis-plugin.jar from repo above or use direct link
In IDEA: File>Settings>Plugins, press button "Install plugin from disk" and select downloaded jar.
Restart IDEA
Note: For me navigation to and from xml files does not work until I disabled another iBatis plugin
In Intellij, Go to Settings-->Plugin-->Browse repositories
Search for mybatis plugin.
Install it and restart.
there is a plugin named MyBatisCodeHelperPro, you can search it in repositories.
or download via https://github.com/gejun123456/MyBatisCodeHelper-Pro/blob/master/README_EN.md