From 69146923327e9f05387e858c341a18acec4c336a Mon Sep 17 00:00:00 2001
From: Guransh Khurana <guranshkhurana@Guranshs-MacBook-Pro.local>
Date: Wed, 15 Feb 2023 16:42:27 -0500
Subject: [PATCH] contains changes to the gradle build file to integrate javafx

---
 .idea/kotlinc.xml     | 2 +-
 buildSrc/build.gradle | 8 ++++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml
index 7e340a7..568bea1 100644
--- a/.idea/kotlinc.xml
+++ b/.idea/kotlinc.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project version="4">
   <component name="KotlinJpsPluginSettings">
-    <option name="version" value="1.6.21" />
+    <option name="version" value="1.6.20" />
   </component>
 </project>
\ No newline at end of file
diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index 28a606b..c5a96f8 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -5,6 +5,14 @@
 plugins {
     // Support convention plugins written in Groovy. Convention plugins are build scripts in 'src/main' that automatically become available as plugins in the main build.
     id 'groovy-gradle-plugin'
+    id 'application'
+    id 'org.jetbrains.kotlin.jvm' version '1.6.20'
+    id 'org.openjfx.javafxplugin' version '0.0.13'
+}
+
+javafx {
+    version = '18.0.2'
+    modules = ['javafx.controls', 'javafx.graphics']
 }
 
 repositories {
-- 
GitLab