From 9db3c487b8956129ddfd51f73a88aad02e960d23 Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Tue, 16 Aug 2022 14:24:04 +0200 Subject: [PATCH] [orx-image-fit] Move dependencies {} out of defaultSourceSet {} --- orx-image-fit/build.gradle.kts | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/orx-image-fit/build.gradle.kts b/orx-image-fit/build.gradle.kts index 10a935d3..e1125629 100644 --- a/orx-image-fit/build.gradle.kts +++ b/orx-image-fit/build.gradle.kts @@ -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 {