Files
orx/orx-jvm/orx-processing/build.gradle.kts
Edwin Jakobs 498f776493 Add orx-processing module for OPENRNDR and Processing interop
This commit introduces the `orx-processing` module, enabling seamless type conversions between OPENRNDR and Processing. It includes extensions for converting vectors and shapes, supporting interoperability through utilities like `PVector`, `PShape`, and `ShapeContour`.
2025-04-15 22:42:46 +02:00

18 lines
514 B
Plaintext

plugins {
org.openrndr.extra.convention.`kotlin-jvm`
}
dependencies {
// api(project(":orx-parameters"))
// api(project(":orx-jvm:orx-panel"))
// api(libs.minim) {
// exclude(group = "org.apache.maven.plugins", module = "maven-javadoc-plugin")
// }
api(libs.processing.core) {
exclude(group = "com.jogamp")
}
implementation(libs.openrndr.application)
implementation(libs.openrndr.math)
implementation(libs.kotlin.reflect)
demoRuntimeOnly(libs.slf4j.simple)
}