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

learn more… | top users | synonyms (1)

6
votes
0answers
73 views

FindBugs shows only first error in method (Jenkins, IntelliJ IDEA)

I'm using Jenkins with FindBugs plugin installed for static code analysis. Also, every developer on the team have FindBugs IntelliJ IDEA plugin installed to do the same. The problem is that in ...
4
votes
0answers
137 views

Android Studio does not compile when using deprecated API

I am having issues compiling and running my application on Android Studio. The problem: It doesn't like that I am using deprecated APIs. (from gradlew compileDebug --stacktrace. Full stacktrace here ...
4
votes
0answers
607 views

Android Hello World in IntelliJ 12 - Cannot find android.app.Activity class

Please see below. I have a feeling I've got the SDKs configured incorrectly, but I'm not sure how to solve it. I tried Googling for answers but no one had this exact problem. Do I have the wrong Java ...
4
votes
0answers
214 views

How to add multiple native libraries (.so) files in IntelliJ

I have two 3rd party native libraries, say libfoo.so and libbar.so. I'm having hard time loading both of these libraries. I've copied them to libs folder under proper CPU arch (armeabi, mips, and x86) ...
4
votes
0answers
150 views

InteliJ + Tomcat + Spring-Loaded

I would like to try out Spring Source's "Spring Loaded" class reloading agent, with Tomcat run via IntelliJ. https://github.com/SpringSource/spring-loaded I've added the JVM arguments to my Tomcat ...
4
votes
0answers
361 views

IntelliJ Android plugin: suppress generation of BuildConfig.java or change where it is written?

I am trying to stop IntelliJ from putting generated files in my primary source folder. These generated .java files are interfering with glob rules that I use with other tools. (Think find -name ...
4
votes
0answers
224 views

Will IDEA support application templates (ADT 20)?

Will the next version of IDEA support application templates feature which comes with ADT 20? Details on this feature: Application templates: Android ADT supports a new application templates ...
3
votes
0answers
69 views

Wrong key being set with HashMap in Intellij Idea

Here is my function: public String uploadImage(URL image,String message) throws Exception{ HashMap<String,String> paramArgs=new HashMap<String,String>(); ...
3
votes
0answers
73 views

Grunt debugging from Webstorm

Its possible to run grunt tasks within webstorm through external tools. However, is it possible to avail debugging with external tools? By running tasks like 'grunt server' or 'grunt test' within ...
3
votes
0answers
44 views

How to reference a style defined in an Android module using IntelliJ?

I've defined the following style in a module and I want to use it as a theme on an Activity Android Module's styles.xml: <resources> <style name="MyTheme" ...
3
votes
0answers
41 views

How do I generate WADL from RESTful Java code in IntelliJ IDEA?

I have a simple RESTful service in IntelliJ IDEA 12.1.3 Ultimate. I've tested it. It works. Now I want to create a Java client for this service and need a WADL. Per the instructions at ...
3
votes
0answers
161 views

Clojure compiler messages in IntelliJ IDEA / La Clojure

Versions: IDEA: 12.0.4 LaClojure: 0.5.228 I'm developing a mixed Clojure/Java project, with a Clojure main method calling Java and other Clojure code. This project worked in Eclipse. Upon ...
3
votes
0answers
253 views

Android ClassNotFoundException at Launching using ABS and SlidingMenu

I am starting an Android application using ActionBarSherlock and SlidingMenu librairies and the IDE IntelliJ IDEA. I had a lot of problems to include the 2 librairies, but finally, trying many ...
3
votes
0answers
65 views

How to debug Groovy Commands stored as Text in Intellij Idea

I have a set of groovy commands stored in the database. These commands are parsed and loaded as a script and then the script is run. Is there a way to debug this script? I was thinking that I could ...
3
votes
0answers
87 views

zsh in IntelliJ

I wanted to get a zsh terminal running in IntelliJ, I set up an external tool which was just zsh and set the working directory to my home directory. When I ran it however there were 2 problems ...
3
votes
0answers
204 views

Painfully slow make with IDEA 12.0

I love the new incremental Java compile in IDEA 12.0 but there seems to be a price to pay. Making now takes about twice as long as in 11.x, most of the time appearing to be spent Executing DEX ...
3
votes
0answers
442 views

DEBUG [org.jboss.naming.Naming] Error writing response to /127.0.0.1 java.net.SocketException

After starting the run/debug configuration begins build and deploy application. All goes well. The only thing that provides continuously JBoss Log SocketException: 2012-07-16 12:43:30,424 DEBUG ...
3
votes
0answers
420 views

Module dependency not detected during compile in IntelliJ IDEA 11

I am developing an Android app and I'm trying to include GraphView to plot some graphs. It is required to include it as a module dependency. After I do that, the IntelliJ IDE properly detects the ...
2
votes
0answers
73 views

Intellij Idea 12 Ultimate cannot correctly import pom for Scala project

I have a project I've been working with in Idea for weeks with no issues. I added a new maven dependency and it was not able to find the classes in it, even with maven re-import run, invalidating ...
2
votes
0answers
40 views

When formatting multiline statements in IntelliJ IDEA, can I align operators?

I'm looking at the options in IntelliJ IDEA 12 and I can't let this go. So please help me stop wasting time on it. This is some code from my Build.scala: val logging = Seq( "ch.qos.logback" % ...
2
votes
0answers
27 views

Debugging Groovy scripts running in a ScriptEngine from IDEA

In my app, I load a script file from the classpath into a String, then pass it into the ScriptEngine. Howerver, the breakpoint set in the script file doesn't trigger. How can I make it work? I use ...
2
votes
0answers
93 views

Any way to set up IntelliJ IDEA to honor OSGi exports/imports for dependencies?

IntelliJ IDEA 11/12 user, here. We have a Maven/OSGi multi-module project set up in which module1 depends on module2. module2 exports packages with MANIFEST only. When coding in module1, is there ...
2
votes
0answers
192 views

Intellij ERROR: No suitable driver found for jdbc:mysql://127.0.0.1:3306/person

first of all I couldn't find an answer from related questions in this forum. I am new to Hibernate technology and I am trying to run a basic example from this page: ...
2
votes
0answers
47 views

Jersey clashing with javax Servlet

I'm setting up a simple REST service with Jersey and Maven. For Jersey's versions greater than 1.8 the web.xml in IntelliJ throws this error: 'com.sun.jersey.spi.container.servlet.ServletContainer' ...
2
votes
0answers
74 views

IntelliJ IDEA backspace and indention?

Here's two scenarios: Eclipse (or perhaps even other programs?): If I indent, such as pressing tab or similar: Step 1: ( | is the caret ) public text(){ | } Step 2: I press backspace: ...
2
votes
0answers
114 views

Play Framework 2.1 application mounted as an IntelliJ Module

Known is the command to create IntelliJ files needed for a Play application: play idea with-sources=yes This generates two folders: .idea (containing libraries.xml) .idea_modules Most of ...
2
votes
0answers
86 views

intellij IDEA plugin: Problems understanding LineMarkerProvider and ReferenceContributor

I am working on a IDEA plugin that should provide navigation between different XML files and between XML and Java sources. It's a bit similar to the Spring support. The to-be-supported XML tags have ...
2
votes
0answers
69 views

Show default content for a fragment in Intellij UI Designer

Is there any way to set some type of placeholder for xml elements in an Android fragment which are normally loaded at runtime so that I can preview the layout? For example, I'm using a custom fragment ...
2
votes
0answers
95 views

How to modify catalina.bat through mavan pom.xml

I am using intellij idea, apache tomcat and maven 2.2.1, in pom.xml , we have the below given part <plugins> <plugin> <groupId>org.codehaus.cargo</groupId> ...
2
votes
0answers
390 views

Could not autowire. No beans of Neo4jTemplate type found

I use IDEA IntelliJ 12.0.2. My application-context.xml is: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
2
votes
0answers
155 views

Explanation of Eclipse / IntelliJ Android Compiler versus Command Line

So I've been encountering a problem trying to move off of the Eclipse and or IntelliJ IDE compilers for Android. Here is a related question with the same problem. Android-Maven-Plugin v3.4.0 cannot ...
2
votes
0answers
272 views

Adding ActionBarSherlock as library to project

I have a problem with the new ActionBarSherlock. I have to link it to my project and use it's features (Fragments, etc), in a project that supports android API level 7 and above. I have created a ...
2
votes
0answers
53 views

Command to generate annotations

I've been looking through the documentation of Intellij 12 but i couldn't find my answer. I'm currently using Intellij 12 with AndroidAnnotations on an Android Project. The project consists of ...
2
votes
0answers
175 views

Give relative path of library project in intellij idea 11.1

I successfully added a library project to the main project in intellij and everything up to this is fine, and it's also running nicely. But my problem is that I have to update this project to a ...
2
votes
0answers
91 views

how to disable jMockit instantiation for specific Robolectric tests?

many of my Android unit tests are written with Robolectric, but it is very limiting and I want to use jMockit for some tests. the problem is that the Robolectric test runner fails whenever jMockit is ...
2
votes
0answers
367 views

Importing external android libraries to Intellij

I wasted a day on trying to import external library into Intellij. I've done everything that was mentioned here, but I keep on receiving android.content.res.Resources$NotFoundException when I try to ...
2
votes
0answers
170 views

IntelliJ - Include module but exclude from build

I am trying the following: Include an Android Module in my project. Excluding it from actual build (if you e.g. press rebuild project). Background: The Android module compilation takes 20 sec I ...
2
votes
0answers
69 views

In IntelliJ 11.1 on os x using emacs mode M-B inputs unicode integral

Using the default emacs keybinding for IntelliJ 11.1 on os x I attempt go back a word using M-B (or literally option-B) instead of moving back a word the unicode integral symbol is entered. M-B ...
2
votes
0answers
110 views

Intellij IDEA. Generate javadoc as jar archive

How should I generate javadoc for my project (class library) as jar archive using Intellij IDEA 11? Is there any way to generate javadoc within generating artifact (jar archive) for my project?
2
votes
0answers
119 views

Developing for BlackBerry with IntelliJ

I wonder if someone has idea about next. I'm developing for BlackBerry. IDEA doesn't recognize RIM installation as JSDK or Mobile SDK. So I have create project without SDK and attach RIM jar file as ...
2
votes
0answers
399 views

Problems with SQLite JDBC driver under IntelliJ

So, I've got a problem, similar to this one, but with a WebApplication running with JBoss on RHEL: How to install SQLite JDBC Driver? but I cannot find a solution. My problem is: If I build my code ...
2
votes
0answers
118 views

Play 2.0(.2) IntelliJ Mac OS x play-specific marked as error (red)

I'm using the current IntelliJ-Version 11.1.x (and(!) tried it with the current EAP 12.0-Version! started both wie 32 and 64 bit), running under Mac OSx (version 10.6.8) and using Java Version ...
2
votes
0answers
629 views

Android aapt can not be found on Mac

I am getting the following error when trying to compile my android project in IntelliJ (v11.1) on MacOSX. I/O error: Cannot run program "/%PATH_TO_SDK%/android-sdk-macosx/platforms ...
2
votes
0answers
316 views

IDEA 11 adb I/O error when trying to attach a debugger when 2 IDEA's windows open

At this moment, this error started with IDEA 11. I still did not find the right pattern but if a device or emulator are idle for a specific period of time (not long) and if I then try to push the ...
2
votes
0answers
321 views

How does intellij's Maven filtering support work?

I have noticed when you configure a Maven project to use property filtering the property filtering seems to also work during a non-maven Intellij "make". This means the Intellij run configurations ...
2
votes
0answers
257 views

Intellij Android + Maven can't find unit tests

I'm using IntelliJ and Maven to develop an Android application and I'm trying to run unit tests with the test module automatically created by the maven archetype. However, I keep getting the following ...
2
votes
0answers
163 views

playframework seleniums intellij idea intelli sense support

I'm writing selenium tests in playframework 1.2.4 using IntelliJ idea (it has some support of playframework now). Is it possible to use some syntax help for selenium tests, which is actually located ...
2
votes
0answers
401 views

debugging android app in the IntelliJ IDEA

I try to debug/run android apps in the IntelliJ IDEA. But when I run example I get a simple window "Waiting for ADB". Next I get error "ADB not responding. Please, kill «adb.exe» process manually and ...
2
votes
0answers
140 views

Query is being executed infinitely in IntelliJ IDEA's Database console

Do you guys know why SQL query might be being executed infinitely in IntelliJ IDEA's Database console unless I hit "Terminate" button ? I have Intellj IDEA 11 and HSQLDB. When I run simple query it ...
1
vote
0answers
25 views

JsTestDriver assert when using requirejs in intellij

I was trying to write some javascript unit tests, using requirejs and jsTestDriver intellij plugin. When I run them in the IDE I have no error even when there are some. I only see them when opening my ...

1 2 3 4 5 18