33 lines
976 B
Groovy
33 lines
976 B
Groovy
sourceSets {
|
|
demo {
|
|
java {
|
|
srcDirs = ["src/demo/kotlin"]
|
|
compileClasspath += main.getCompileClasspath()
|
|
runtimeClasspath += main.getRuntimeClasspath()
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation project(":orx-parameters")
|
|
implementation project(":orx-compositor")
|
|
implementation project(":orx-image-fit")
|
|
implementation project(":orx-fx")
|
|
|
|
// rabbit control 0.3.26 depends on libs with vulnerabilities
|
|
implementation 'org.yaml:snakeyaml:1.30'
|
|
implementation 'io.netty:netty-all:4.1.75.Final'
|
|
|
|
implementation "cc.rabbitcontrol:rcp:0.3.26"
|
|
|
|
implementation "com.google.zxing:core:3.4.0"
|
|
implementation "com.google.zxing:javase:3.4.0"
|
|
implementation "io.ktor:ktor-server-netty:1.3.1"
|
|
|
|
demoImplementation(libs.openrndr.extensions)
|
|
demoRuntimeOnly(libs.openrndr.gl3)
|
|
demoRuntimeOnly(libs.openrndr.gl3.natives)
|
|
demoImplementation(sourceSets.getByName("main").output)
|
|
}
|