Skip to content

Commit 9aa92d5

Browse files
Update JxBrowser Gradle plugin to version 1.2.1
1 parent 1e7afa9 commit 9aa92d5

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

build.gradle.kts

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
kotlin("jvm") version "2.0.0"
2424

2525
// Adds JxBrowser.
26-
id("com.teamdev.jxbrowser") version "1.1.0"
26+
id("com.teamdev.jxbrowser") version "1.2.1"
2727

2828
// Adds UI toolkits.
2929
id("org.openjfx.javafxplugin") version "0.1.0"
@@ -67,21 +67,22 @@ subprojects {
6767
}
6868

6969
dependencies {
70-
// Cross-platform dependency
70+
// Cross-platform dependency.
7171
implementation(jxbrowser.crossPlatform)
7272

73-
/*
74-
For having only platform-dependent dependency:
75-
1. Comment out the cross-platform dependency above.
76-
2. Uncomment the dependency for your platform.
77-
*/
73+
// For having only platform-dependent dependency:
74+
// 1. Comment out the cross-platform dependency above.
75+
// 2. Uncomment the dependency for your platform.
7876

7977
// Windows 32-bit
8078
// implementation(jxbrowser.win32)
8179

8280
// Windows 64-bit
8381
// implementation(jxbrowser.win64)
8482

83+
// Windows 64-bit ARM
84+
// implementation(jxbrowser.winArm)
85+
8586
// macOS 64-bit
8687
// implementation(jxbrowser.mac)
8788

@@ -112,7 +113,8 @@ subprojects {
112113
// Dependency on an SWT for the current platform.
113114
implementation(Swt.toolkitDependency)
114115

115-
// Depend on Guava for the Resources utility class used for loading resource files into strings.
116+
// Depend on Guava for the Resources utility class used for
117+
// loading resource files into strings.
116118
implementation("com.google.guava:guava:$guavaVersion")
117119

118120
// This file is used by `JarProtocol` example.
@@ -125,5 +127,6 @@ subprojects {
125127
systemProperties(System.getProperties().mapKeys { it.key as String })
126128
}
127129

130+
// Configures the platform-dependent SWT dependencies.
128131
Swt.configurePlatformDependency(project)
129132
}

0 commit comments

Comments
 (0)