[orx-image-fit] Move dependencies {} out of defaultSourceSet {}

This commit is contained in:
Edwin Jakobs
2022-08-16 14:24:04 +02:00
parent 5c2e0eae23
commit 9db3c487b8

View File

@@ -11,19 +11,18 @@ kotlin {
val demo by creating {
defaultSourceSet {
kotlin.srcDir("src/demo")
dependencies {
implementation(project(":orx-shapes"))
implementation(project(":orx-image-fit"))
implementation(libs.openrndr.application)
implementation(libs.openrndr.extensions)
runtimeOnly(libs.openrndr.gl3.core)
runtimeOnly(libs.openrndr.gl3.natives)
implementation(compilations["main"]!!.output.allOutputs)
}
}
collectScreenshots {
}
dependencies {
implementation(project(":orx-shapes"))
implementation(project(":orx-image-fit"))
implementation(libs.openrndr.application)
implementation(libs.openrndr.extensions)
runtimeOnly(libs.openrndr.gl3.core)
runtimeOnly(libs.openrndr.gl3.natives)
implementation(compilations["main"]!!.output.allOutputs)
}
collectScreenshots { }
}
}
testRuns["test"].executionTask.configure {