Skip to content
Snippets Groups Projects
Commit 69146923 authored by Guransh Khurana's avatar Guransh Khurana
Browse files

contains changes to the gradle build file to integrate javafx

parent a2e4561b
No related branches found
No related tags found
1 merge request!10Added basic GUI to console application
Pipeline #84089 passed
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="KotlinJpsPluginSettings"> <component name="KotlinJpsPluginSettings">
<option name="version" value="1.6.21" /> <option name="version" value="1.6.20" />
</component> </component>
</project> </project>
\ No newline at end of file
...@@ -5,6 +5,14 @@ ...@@ -5,6 +5,14 @@
plugins { 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. // 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 '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 { repositories {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment