I can't find it anywhere in jetbrains website
intelliJ idea 10 community edition and GWT plugin - Stack Overflow
IntelliJ IDEA Community Edition - Stack Overflow
Adding IntelliJ IDEA Community Edition as a dependency? - Kotlin Discussions
Key difference between ultimate and community edition.
Videos
There is no GWT support in the Community Edition.
Starting from the version 11 it's not possible to add PROJECT_FOLDER/src as it was described in the previously posted (by ctorx) link http://java.dzone.com/tips/gwt-development-intellij-idea. Once we add a source folder it appears as an "Empty library" and doesn't work. This is because IDEA treats it as a folder where should be compiled classes not sources.
But there is a workaround. To fix it we have to hack the module's IML file. Find the following lines in the IML file of your entry point module
<orderEntry type="module-library">
<library>
<CLASSES />
<JAVADOC />
<SOURCES>
<root url="file://$MODULE_DIR$/src/main/java" />
</SOURCES>
</library>
</orderEntry>
and move your path into the CLASSES tag, so the entire thing looks like the following
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="file://$MODULE_DIR$/src/main/java" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
The button says Buy because it is an application being distributed via the store side of software-center, even though it is free. Simply because the button does say Buy doesn't mean you have to pay for it. If the price is $0.00 as it is in this case, you will not have to pay, or enter any payment details, to purchase the software. You can simply click the button, and it will go through the process to install it.
This is the latest IntelliJ Idea IDE.
http://download-ln.jetbrains.com/idea/ideaIC-12.1.3.tar.gz
To get it, execute the following commands
wget http://download-ln.jetbrains.com/idea/ideaIC-12.1.3.tar.gz
tar -xvf ideaIC-12.1.3.tar.gz
Rest of the installation instructions are documented in Install-Linux-tar.txt file.