Questions tagged [intellij-13]

IntelliJ IDEA is a popular IDE by JetBrains. Originally created for Java, it currently supports a lot more languages, including: JavaScript, Groovy, HTML, CSS, RSS, R, Haskell, PHP, Ruby, Python, Scala, Clojure, Kotlin.

IntelliJ IDEA is a popular IDE by JetBrains. It is often simply referred to as 'IDEA' or 'IntelliJ'. First released in 2001, it is mostly focused on boosting developer's productivity, providing a wide set of automated refactorings to ease codebase evolutions. Rich plugin development API can be used to add almost any type of functionality, including new languages/frameworks support, VCS integation or build management with custom tools involved. Intellij Idea also serves as a base platform for other IDE software: PhpStorm, PyCharm, RubyMine.

The Ultimate (commercial) version of the tool offers support for enterprise class development, while the open-source (free) version is often used for android, groovy, scala and web development. A 30-day fully functional trial of the Ultimate edition for various platforms can be freely downloaded.

Useful links

Intellij Idea documentation

Developer community

Plugin development guide

303 questions
0
votes
1 answer

Error:org.gradle.tooling.model.GradleProject.getBuildDirectory()Ljava/io/File;

After upgrading to IntelliJ IDEA 13.1.5 I can't build android project. The error looks like this:: Gradle 'myProject' project refresh failed Error:org.gradle.tooling.model.GradleProject.getBuildDirectory()Ljava/io/File; How it can be…
0
votes
1 answer

Why is this class in my Java 6 JDK look like the Java 5 version?

I'm running IntelliJ with Java 6 to build my project. I'm doing a clean checkout via SVN and trying to do a mvn clean install It runs successfully but then when I try to deploy my application I get a compile time error. It says that I'm trying to…
Carlos Bribiescas
  • 4,197
  • 9
  • 35
  • 66
0
votes
1 answer

How to give reference to Platform SDK from Groovy IntelliJ project?

I am new to Groovy and InteliJ. I need to create a project with Groovy script. It is dependent on Axeda platform SDK from here Using intellij, I have created a New project - Groovy Module. Used project SDK as Java JDK 1.7 I need to import some…
0
votes
0 answers

Intellij 13.1.3 on OS X: can't debug Ruby

I write my Ruby code in Intellij and use Ruby 6.5.2.20140512 plugin for that. But each time I try to debug some Ruby code in my Intellij Idea 13.1.3 I get the next message The gem debase required by the debugger is not currently installed. Would…
VB_
  • 45,112
  • 42
  • 145
  • 293
0
votes
1 answer

how to set up an automatic compilation of test classes?

Intellij idea not compiles special classes when running test. Now I run the compilation manually via activator console. How can I customize the intellij idea to run automatically when start a compilation of test?
Sergey
  • 133
  • 1
  • 8
0
votes
1 answer

Intellij: What's the difference between 'Run' and 'Run...'

I'm trying to change the default Run keyboard shortcut to ⌘R. - Because I dont want to reach for the trackpad everytime and my fingers are not long enough to do ⌥⇧F10 at once. What's the difference between 'Run' and 'Run...'?
Jack
  • 497
  • 3
  • 10
  • 22
0
votes
1 answer

Intellij plugin to recognize javascript in a tag

I am using a template library that our company has developed. It is really great, however, we are using a tag: // javascript code This tag does some stuff but essentially that is javascript code with some objects passed to it…
mjs
  • 21,431
  • 31
  • 118
  • 200
0
votes
0 answers

Intellij IDEA Darcula - how to make it print friendly?

I've always been a big fan of the Darcula theme for Intellij IDEA. The problem is though that if you use it, IDEA will also print everything (code, diagrams, docs etc.) according to Darcula colours - and that's not very printer/paper+ink…
Adam Adamaszek
  • 3,914
  • 1
  • 19
  • 24
0
votes
1 answer

Why does the toString method on scala.Function1 and scala.Function2 have parenthesis

I am implementing a derivation of (Int) => String) and overriding the toString method like this: object A extends ((Int) => String) { override def toString: String = "A" def apply(int: Int): String = int.toString } IDEA IntelliJ indicates the…
chaotic3quilibrium
  • 5,661
  • 8
  • 53
  • 86
0
votes
0 answers

Recorded Macros in Run/Debug configuration

As the title says. Is it possible to add a macro I have recorded in Run/Debug configuration and in the Before launch configuration?
Diolor
  • 13,181
  • 30
  • 111
  • 179
0
votes
2 answers

How write two main function in neighbouring actors?

I am experimenting with akka, I have written two dummy actors with main function in them: HelloActor package akkaSample.severalSystems import akka.actor.{Actor, ActorSystem} class HelloActor extends Actor { def receive = { case "mew" =>…
Cherry
  • 31,309
  • 66
  • 224
  • 364
0
votes
1 answer

IntelliJ doesn't produce any compiled file

In my my "Project compiler output" I got a path but the directory doesn't even exist and I ran my code multiple time, I tried "Make" "Make module" "Compile class" and the program run as expected inside of Intellij but it doesn't produce any…
Wicelo
  • 2,358
  • 2
  • 28
  • 44
0
votes
1 answer

debugging a sbt project with intellij

I'm just getting started with scala and sbt. I've downloaded the sbt project https://github.com/spray/spray-template and I'm trying to debug run it. It makes/builds fine and I can get the unit tests to run with a specs2 configuration. What run…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
0
votes
1 answer

IntelliJ Idea 13.1.4 and JDK 1.8.0_11

I am running IntelliJ Idea 13.1.4 on OS X 10.9.4. I have installed JDK 1.8.0_11. Writing any programs in Java shows the error that 'String' could not be resolved and one of the suggestions is to set the JDK. Even after specifying the JDK correctly…
Ethen Hunt
  • 579
  • 2
  • 4
  • 13
0
votes
0 answers

Intellij suggestions (code completion) "eat" CPU

I use sass and jade plugins with IJ 13. The trouble is that when I start typing e.g. "d" for div the suggestion list takes a lot of time to be displayed (~2 seconds). The things are a bit better with python files but still there is still some lag. I…
Diolor
  • 13,181
  • 30
  • 111
  • 179