A Maven-based Java project template using the Processing libraries.
This template provides a Maven-based Java project skeleton for building Processing sketches with a conventional project structure, dependency management, and simple build/run commands.
Before you try to build or run the project, make sure you have:
- Java Development Kit (JDK) 17 or newer
- Apache Maven 3.9 or newer
To get started clone this repository and cd to the project root:
git clone https://github.com/Maelkiz/processing-template-project.git
cd processing-template-projectBuild (compile + package):
mvn clean packageRun via Maven (calls the main class):
mvn exec:javaRun the packaged JAR produced by the build:
java -jar target/processing-app.jarClean build artifacts:
mvn cleanWhere you take it next is up to you. This repository is an example of how the template can be adapted to a real project.