0

Im creating a JavaFX application in IntelliJ IDEA, and I am new to IntelliJ.

I would like to be able to compile my JavaFX application on a Raspberry Pi, but my app is quite complex and relies on 3rd party libraries, etc.

I would like to be able to see what exactly is going on in IntelliJ when I run "Make Project"

Is there a command line output screen that Im simply missing? I want the exact command that IntelliJ uses to compile the application.

Essentially, on the Pi, I want to get the code from my repo, run the compilation command and produce an executable JAR on demand.

I have of course read the doco on how to compile a JavaFX application, but if I could see what IntelliJ does, that would be fantastic.

Mark
  • 14,820
  • 17
  • 99
  • 159

1 Answers1

0

So far I haven't found such an option but the process is most likely some sort of flow based on IntelliJ plugins and the documentation seems to support this theory.

Perhaps you'd consider using a software management and build tool such as maven or ant or something similar. This should give you (almost) unlimited options to configure your desired build sequence and 3rd party dependencies.

Community
  • 1
  • 1
Morfic
  • 15,178
  • 3
  • 51
  • 61
  • yeah, I figured that might need to be the case. I know that IntelliJ lets you generate ANT files, which I have done, now its a matter of just ensuring that I can run them manually – Mark May 28 '14 at 12:38
  • If i were you, I'd go with maven as it more flexible and you also get the benefit of its distributed dependency management system. You could also setup a Jenkins server on your PI to make your build procedure even friendlier – Morfic May 28 '14 at 12:43
  • I did find out how to do this, BTW, in the messages log there is an icon which shows raw output, including the command used to generate the build or run the app! – Mark Jun 03 '14 at 23:10
  • @Mark Hmm, didn't see that so far. Thanks for sharing – Morfic Jun 04 '14 at 16:11