Files
orx/orx-jvm/orx-processing/build.gradle.kts
2025-04-16 11:11:35 +02:00

14 lines
367 B
Plaintext

plugins {
org.openrndr.extra.convention.`kotlin-jvm`
}
dependencies {
api(libs.processing.core) {
exclude(group = "org.jogamp.gluegen")
exclude(group = "org.jogamp.jogl")
}
implementation(libs.openrndr.application)
implementation(libs.openrndr.math)
implementation(libs.kotlin.reflect)
demoRuntimeOnly(libs.slf4j.simple)
}