File tree Expand file tree Collapse file tree
main/kotlin/com/teamdev/jxbrowser/gradle
test/kotlin/com/teamdev/jxbrowser/gradle Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -118,10 +118,10 @@ public open class JxBrowserExtension(
118118 public val swt: Provider <String > = artifact(" swt" )
119119
120120 /* *
121- * Returns a dependency notation for the `jxbrowser-graalvm `,
122- * an artifact containing GraalVM reachability metadata configuration.
121+ * Returns a dependency notation for the `jxbrowser-native-image `,
122+ * an artifact containing GraalVM Native Image reachability metadata configuration.
123123 */
124- public val graalvm : Provider <String > = artifact(" graalvm " )
124+ public val nativeImage : Provider <String > = artifact(" native-image " )
125125
126126 /* *
127127 * Returns a dependency notation for the `jxbrowser-win64`,
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ internal class JxBrowserPluginFunctionalTest {
9999 " jxbrowser-kotlin-$jxBrowserVersion .jar" ,
100100 " jxbrowser-compose-$jxBrowserVersion .jar" ,
101101 " jxbrowser-win64-arm-$jxBrowserVersion .jar" ,
102- " jxbrowser-graalvm -$jxBrowserVersion .jar" ,
102+ " jxbrowser-native-image -$jxBrowserVersion .jar" ,
103103 )
104104 buildFile.writeText(
105105 """
@@ -130,7 +130,7 @@ internal class JxBrowserPluginFunctionalTest {
130130 "toCopy"(jxbrowser.kotlin)
131131 "toCopy"(jxbrowser.compose)
132132 "toCopy"(jxbrowser.winArm)
133- "toCopy"(jxbrowser.graalvm )
133+ "toCopy"(jxbrowser.nativeImage )
134134 }
135135
136136 tasks.register<Copy>("$taskName ") {
Original file line number Diff line number Diff line change @@ -67,10 +67,10 @@ internal class JxBrowserPluginTest {
6767 macArm.get() shouldBe " $group :jxbrowser-mac-arm:$jxBrowserVersion "
6868 kotlin.get() shouldBe " $group :jxbrowser-kotlin:$jxBrowserVersion "
6969 winArm.get() shouldBe " $group :jxbrowser-win64-arm:$jxBrowserVersion "
70- graalvm.get() shouldBe " $group :jxbrowser-graalvm:$jxBrowserVersion "
7170 compose.get() shouldBe " $group :jxbrowser-compose:$jxBrowserVersion "
7271 linux64.get() shouldBe " $group :jxbrowser-linux64:$jxBrowserVersion "
7372 linuxArm.get() shouldBe " $group :jxbrowser-linux64-arm:$jxBrowserVersion "
73+ nativeImage.get() shouldBe " $group :jxbrowser-native-image:$jxBrowserVersion "
7474 crossPlatform.get() shouldBe " $group :jxbrowser-cross-platform:$jxBrowserVersion "
7575 }
7676 }
You can’t perform that action at this time.
0 commit comments