From 37a42dd88cf3947acce469e8e7db307655d119d5 Mon Sep 17 00:00:00 2001 From: rnentjes Date: Sun, 8 Dec 2024 10:14:28 +0100 Subject: [PATCH] Add main class configuration for application plugin Configured the 'application' plugin with the main class to ensure the application starts with the correct entry point. This change is necessary for proper execution of the program when deploying or running from the build system. --- build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 3a4bc44..029762f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -75,6 +75,10 @@ kotlin { } } +application { + mainClass.set("nl.astraeus.vst.string.MainKt") +} + /* Hardcoded deploy configuration */ val deployDirectory = "vst-string.midi-vst.com"