Comments on: Processing in IntelliJ: Combining “proper” Java with Processing https://proto.ink/2016/06/03/processing-in-intellij-combining-proper-java-with-processing/ Creative Technology Magazine Thu, 07 Feb 2019 08:48:48 +0000 hourly 1 https://wordpress.org/?v=4.9.11 By: Erik https://proto.ink/2016/06/03/processing-in-intellij-combining-proper-java-with-processing/#comment-9316 Tue, 27 Jun 2017 09:18:11 +0000 http://proto.ink/?p=2924#comment-9316 Brilliant, thanks a bunch!

]]>
By: Michael Farr https://proto.ink/2016/06/03/processing-in-intellij-combining-proper-java-with-processing/#comment-31 Wed, 24 Aug 2016 20:20:08 +0000 http://proto.ink/?p=2924#comment-31 core.jar on Mac is at
/Applications/Processing.app/Contents/Java/core.jar

updating JDK to 1.8. When I built I got a bad class file error on PApplet. This occurred because My Mac has jdk 1.6 built in as the only SDK and Processing appears to be built with 1.8. so go to Oracle: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html and download the 1.8 JDK (or whatever you need) and do a default install.

To configure SDKs at the global (IDE) level in intelliJ

Open the Project Structure dialog (e.g. ⌘;).
In the left-hand pane, under Platform Settings, click SDKs.
To add a new SDK, click add and select the desired SDK type.
In the dialog that opens, select the SDK home directory and click OK.

]]>
By: Michael Farr https://proto.ink/2016/06/03/processing-in-intellij-combining-proper-java-with-processing/#comment-30 Wed, 24 Aug 2016 19:37:26 +0000 http://proto.ink/?p=2924#comment-30 Thanks Margot,

If you haven’t set up the JDK for IntelliJ (as I had not because I came from Ruby) you need to do that or you can’t even create a JavaEE project. The instructions you could reference in your article are at:

https://www.jetbrains.com/help/idea/2016.2/configuring-global-project-and-module-sdks.html

]]>