Skip to content
Advertisement

Tag: intellij-idea

How do you “Mavenize” a project using Intellij?

I have seen many posts about using eclipse to Mavenize a project. Is there a easy way to do that in IntelliJ? From what I understand about “Mavenize”, it’s just add some xml in pom.xml and the directory structure is in src/main/java, src/main/test …. Answer For those that benefit from a visual, as I did: Essentially, just right-click on the

IntelliJ IDEA debugger follow child process

We have some Java code that starts a new process using the following code: Runtime.getRuntime().exec(command); I’d like to be able to tell the debugger that it should follow the child process like you can do with GDB as documented here by issuing the set follow-fork-mode child command. Is there something equivalent in the IntelliJ IDEA Java debugger? If so how

What GUI libraries are the JetBrains using?

Background I am somewhat new to Java and am enjoying using IntelliJ IDE developed by the JetBrains team. I have downloaded the source for the Community Edition, and I am trying to work out what GUI libraries they are using to get the look-and-feel. Question What libraries (if any) are they using to get the non-native tabs, toolbars and breadcrumb

IntelliJ – Failed to start: 0 passed, 1 not started

Just been playing around for the first time with IntelliJ IDEA Community edition, first time I have worked with it so if I’m missing something, please excuse me. I have a bunch of unit tests which I run, however, when running them in IntelliJ (with the standard setup out of the box), I intermittently get the following error in the

Can’t compile project when I’m using Lombok under IntelliJ IDEA

I’m trying to use Lombok in my project that I’m developing using IntelliJ IDEA 11. I’ve installed 3rd-party plugin for IDEA and it seems working fine because IDEA sees all autogenerated methods/fields. So I have a class that uses Slf4j. I annotated it like this But when I build my project compiler spits: cannot find symbol variable log. Could you

How to build jars from IntelliJ properly?

I have a project that contains a single module, and some dependencies. I’d like to create a jar, in a separate directory, that contains the compiled module. In addition, I’d like to have the dependencies present beside my module. No matter how I twist IntelliJ’s “build jar” process, the output of my module appears empty (besides a META-INF file). Answer

Advertisement