Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 758 Bytes

File metadata and controls

34 lines (23 loc) · 758 Bytes

Processing4 Gradle Template

This ia a cross-platform template project for developing Processing4.x with Gradle9 and Java17. You can develop Processing sketches as Java projects using IDEs like IntelliJ IDEA, Eclipse, or VS Code.

Quick Start

  1. Clone or download this repository to your local machine.
  2. Open a terminal in the project directory.
  3. Run the following command to build and run the Processing sketch.

For Windows

gradlew.bat run

For macOS/Linux

chmod +x gradlew
./gradlew run

Getting Started

Edit src/main/java/org/example/Main.java to start writing your code.

Technology Stack

  • Processing: 4.4.10
  • Gradle: 9.0.0
  • Java(JDK): 17
  • JOGL/GlueGen: 2.5.0
  • Kotlin Standard Library: 2.2.20