Questions tagged [intellij-15]

Use this when developing with the IntelliJ IDEA 15 IDE for Java.

IntelliJ is the newest of the JetBrains IntelliJ IDEA Java IDE family.

This adds many new features, such as lambda debugging, force return, and an improved UI.

Learn more at What's new in IntelliJ IDEA 15.

191 questions
4
votes
0 answers

IntelliJ Refactor Hungarian / mNotation out of a project?

By far the best safest way to refactor a variable name that I've found is in an IDE like IntelliJ. It's ability to change a member variable and resolve any naming conflicts in Java between member variables and local variables is beyond the scope of…
spierce7
  • 14,797
  • 13
  • 65
  • 106
4
votes
1 answer

How to see what command is executed by Intellij

Is there any way of seeing what commands is Intellij executing to run tests? There is nothing like that in the Run or Debug views. Basically I want the same as this, but for Intellij (15).
garci560
  • 2,993
  • 4
  • 25
  • 34
4
votes
1 answer

Defining a test source set for Intellij 15 with Gradle

I'm able to define a sourceSet in Gradle using something like the following sourceSets { unitTest { java { srcDir 'src/unitTest/java' } resources { srcDir 'src/unitTest/resources' } …
Zymus
  • 1,673
  • 1
  • 18
  • 38
4
votes
2 answers

How to move maven directory ".m2" from my home directory after installing IntelliJ

I've just installed IntelliJ 15 on Ubuntu and wanted to update maven repository indices, I am having disk space errors because my home folder is on a limited size partition. I am totally lost trying to move ~/.m2 to somewhere else. I've tried…
Bishoy
  • 705
  • 9
  • 24
4
votes
2 answers

How to remove (phantom) breakpoints pointing to old/missing source from Intellij IDEA?

Using Intellij (v14 and now v15) I have put breakpoints to debug no-yet released classes coming from an external dependency (usually a snapshot version) for a web app running in Tomcat 7+. when I change that external dependency to a released…
danielgpm
  • 1,609
  • 12
  • 26
4
votes
1 answer

How do I import an existing Grails 3 (3.0.12) project in IntelliJ 15

There's documentation on IntelliJ's website for creating a new Grails project, but importing a project is more sketchy and I cannot get it to work for me. If I tell IntelliJ to import a new project, and point it to my project directory, it does not…
IcedDante
  • 6,145
  • 12
  • 57
  • 100
4
votes
0 answers

How do I jump to method implementation for C++ code in Android Studio (1.5.1)

I've got a lot of native code, and I want to be able to right click a function name -> Go To -> Implementation(s). I can do this with Java code just fine, but when I try it on my C++ code, it always jumps to the function definition in the header…
Cypress Frankenfeld
  • 2,317
  • 2
  • 28
  • 40
4
votes
2 answers

True HiDPI in IntelliJ 15

I used to use IntelliJ 14 with the -Dhidpi=true flag in the vmoptions file and didn't have any problems with the scaling. I've just upgraded to 15 and it features "True HiDPI" but it doesn't seem to work on my Surface Pro 3. I chose to import my…
ystan-
  • 1,474
  • 1
  • 19
  • 43
4
votes
2 answers

IntelliJ disable Jalopy for a specific project

How can I disable Jalopy for a specific project in IntelliJ Idea 14 or 15? It seems that he is not so friend with Java8, but all other projects are in Java7. So, I need to selectively disable Jalopy. Or maybe It would be nice to enable it only for…
mat_boy
  • 12,998
  • 22
  • 72
  • 116
4
votes
1 answer

Intellij : Configure Label Decorations for Git and Subversion

I recently switched to Intellij and i want to know if there is a possibility to display git or svn informations (author name, last commit date ...) associated to a given project file, like Eclipse do : Thanks in advance
3
votes
2 answers

Jacoco report showing deleted java class for test coverage

I have simply deleted the java class file which was of no use.After building the package in intellij, Jacoco test report showing deleted java class as well. For reference, I have attached sceenshot. Is there any reference exists even after deleting…
Rony Singh
  • 147
  • 1
  • 10
3
votes
1 answer

How do I create a hotkey for compound actions in IntelliJ IDEA?

Is it possible to create a script of multiple actions/tasks in IntelliJ IDEA and trigger them with a single hotkey/abbreviation? I want to periodically do: 1 Reimport all maven projects 2 Build -> Rebuild Project 3 Run Application Can I trigger…
user674669
  • 10,681
  • 15
  • 72
  • 105
3
votes
2 answers

IntelliJ doesn't show python facet even though i installed python plugins - The code runs successfully on Mac terminal

I am executing a python code with boto3 and runs successfully in the mac terminal but when i try to run it on IntelliJ J i see errors. Several posts say that i need a project interpreter and i tried the below added a python plugin added project…
sve
  • 393
  • 1
  • 2
  • 15
3
votes
3 answers

Intellij IDEA 2017.1.5 connection times out during plugin installation

I have a problem with my IDE. It does not want to neither update or install any plugins (but it allows me to register my licence and browse through every plugin). It gives me a notification: Connection failed (Read timed out). Please check network…
pokemzok
  • 1,659
  • 1
  • 19
  • 29
3
votes
2 answers

IntelliJ using .class instead of .java of a module

So I have 3 modules that are dependent (use each others classes). In IntelliJ i have included the module dependencies and everything was working fine for a while, until maybe I pressed one of the short keys. What I know the problem is, now if I try…