Hansolo module not found #IDEA-314024 fixed

GitOrigin-RevId: c64bfb35a4f5a328803cf5a71249947355c1fc72
This commit is contained in:
Georgii Ustinov
2023-10-12 18:23:54 +00:00
committed by intellij-monorepo-bot
parent f5691cec11
commit 5b0752f442
3 changed files with 9 additions and 3 deletions
@@ -47,7 +47,7 @@ kotlin {
javafx {
version = '${context.getProperty("javafx.version")}'
modules = ['javafx.controls', 'javafx.fxml'#if ($context.hasLibrary("tilesfx")), 'javafx.web'#end#if ($context.hasLibrary("fxgl")), 'javafx.media'#end]
modules = ['javafx.controls', 'javafx.fxml'#if ($context.hasLibrary("tilesfx")), 'javafx.web', 'javafx.swing' #end#if ($context.hasLibrary("fxgl")), 'javafx.media'#end]
}
dependencies {
@@ -30,7 +30,13 @@
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>${context.getProperty("javafx.version")}</version>
</dependency>#end
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<version>${context.getProperty("javafx.version")}</version>
</dependency>
#end
#if ($context.hasLibrary("fxgl"))<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
+1 -1
View File
@@ -81,7 +81,7 @@
<dependency>
<groupId>eu.hansolo</groupId>
<artifactId>tilesfx</artifactId>
<version>17.1.17</version>
<version>11.48</version>
</dependency>
<dependency>
<groupId>com.github.almasb</groupId>