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
0
votes
1 answer

How to use a GUI form created in IntelliJ in another program (e.g. Eclipse)

How would you take a .java and .form file that was created in IntelliJ and run it in another program, such as Eclipse? Also, is there a way to make the GUI Form editor actually write all of the code into the class file?
ws04
  • 45
  • 9
0
votes
0 answers

Intellij - build artifact

When I build a Jar in intellij (using "build artifacts...") it generates a jar that has invalid signature. To solve it I always need to go inside the jar to META-INF folder and delete ORACLE_J.SF and ORACLE_J.RSA. Any idea why it happens/how to…
Gilad Baruchian
  • 930
  • 3
  • 14
  • 30
0
votes
1 answer

Force IntelliJ to use Maven artifact even if the module which produces the artifact is within the project

I have project X containing modules Y and Z. Module Y relies on module Z (a third party library which I maintain a private fork of). On a maven build module Z relocates it's very version specific packages to a seperate package e.g…
0
votes
0 answers

Execution failed for task ':compileGroovy'. javax/persistence/Entity

Here is My build.gradle. buildscript { ext { grailsVersion = project.grailsVersion } repositories { mavenLocal() maven { url "https://repo.grails.org/grails/core" } } dependencies { …
Md Hafezur Rahman
  • 376
  • 1
  • 6
  • 15
0
votes
1 answer

Inconsistency with System.getProperty("user.dir")

I have been using this line of code in AndroidStudio to get the path of a file in my project: String srcDir = System.getProperty("user.dir"); Currently when I am trying to access the same project using intelliJ the value of srcDir returned is…
Naman
  • 27,789
  • 26
  • 218
  • 353
0
votes
1 answer

Add a specific code path in my plugin to support multiple IntelliJ version

IntelliJ 15 introduces a new method in SimpleJavaParameters class called setUseClasspathJar. I want my plugin to set call this method if the user is running IntelliJ 15. If the user runs IntelliJ 14.1, the method is not even available (it won't…
Dat Chu
  • 10,822
  • 13
  • 58
  • 82
0
votes
1 answer

Playframework 2.4 evolution fails in debugger

I have a pretty normal playframework project that implements a number of rest services. 'activator test' runs fine from the command line. When I try to run one of the tests in the debugger in IntelliJ 15, one of my database evolution scripts…
Leif Jantzen
  • 387
  • 4
  • 14
0
votes
1 answer

IntelliJ Navigation Bar Hot Key

IntelliJ 15 says that the hot key is ⌥↖︎ to open the Navigation Bar, but how do you do this? I assumed that it was option+↑+← but that doesn't seem to do anything in IntelliJ.
seantomburke
  • 10,514
  • 3
  • 18
  • 23
0
votes
0 answers

How can I fix an error with IBus in Ubuntu 15.10

Installed: Ubuntu 15.10 x64 Kernel: 4.2.0-18-generic IBus 1.5.11 java version "1.8.0_66" Java(TM) SE Runtime Environment (build 1.8.0_66-b17) Java HotSpot(TM) 64-Bit Server VM (build 25.66-b17, mixed mode) IntelliJ IDEA 15…
Vladyslav Krylasov
  • 97
  • 1
  • 2
  • 11
-1
votes
1 answer

IntelliJ displays UPPERCASE on Run Configuration section

In my Java apps, I realized that IntelliJ displays UPPERCASE on Run Configuration section as shown below. I thought it may be caused by Material Theme or Atom Icon plugins, but after disabling Atom Icon and selecting default Dracula Theme, it still…
user15807010
-2
votes
1 answer

Unable to push repository to Github

I am trying to push some code to my Github repository. I have a base repository on Github, that I pulled on IntelliJ. After making changes, I am trying to push it back to Github. But, I keep getting the following error : remote: Permission to…
1 2 3
12
13