Skip to content

Commit 26bb8d5

Browse files
Update plugin version to 1.2.0 (#55)
1 parent 2ecf249 commit 26bb8d5

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ A Gradle plug-in that provides convenience methods for adding JxBrowser dependen
88
import com.teamdev.jxbrowser.gradle.Repository
99

1010
plugins {
11-
id("com.teamdev.jxbrowser") version "1.1.0"
11+
id("com.teamdev.jxbrowser") version "1.2.0"
1212
}
1313

1414
jxbrowser {
1515
// The JxBrowser version. A mandatory field.
1616
// Obtain the latest release version number at https://teamdev.com/jxbrowser/.
17-
version = "7.39.1"
17+
version = "8.0.0"
1818

1919
// The location of JxBrowser repository to use. It's either North America or Europe.
2020
// If not specified, the location is set to North America.

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2222

2323
object BuildSettings {
2424
const val GROUP = "com.teamdev.jxbrowser"
25-
const val VERSION = "1.1.0"
26-
const val JXBROWSER_VERSION = "7.39.1"
25+
const val VERSION = "1.2.0"
26+
const val JXBROWSER_VERSION = "8.0.0"
2727
val javaVersion = JavaVersion.VERSION_1_8
2828
}
2929

src/main/kotlin/com/teamdev/jxbrowser/gradle/JxBrowserExtension.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,13 @@ public open class JxBrowserExtension(private val project: Project) {
192192
}
193193

194194
/**
195-
* Check if the artifact with `shortName` exists in JxBrowser `version`.
195+
* Checks if the artifact with [shortName] exists in JxBrowser [version].
196196
*/
197197
private fun checkArtifactSupported(shortName: String) {
198198
val artifactNameToReleaseVersion =
199199
mapOf(
200-
"compose" to "8.0.0-eap.1",
201-
"kotlin" to "8.0.0-eap.1",
200+
"compose" to "8.0.0",
201+
"kotlin" to "8.0.0",
202202
"win64-arm" to "8.0.0",
203203
)
204204
val artifactReleaseVersion = artifactNameToReleaseVersion[shortName]

src/test/kotlin/com/teamdev/jxbrowser/gradle/JxBrowserPluginFunctionalTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,13 @@ internal class JxBrowserPluginFunctionalTest {
144144
@Test
145145
fun `download JxBrowser 8 jars`() {
146146
val taskName = "downloadJars"
147-
val jxBrowserVersion = "8.0.0-eap.1"
147+
val jxBrowserVersion = "8.0.0"
148148
val filesToCheck =
149149
listOf(
150150
"jxbrowser-$jxBrowserVersion.jar",
151151
"jxbrowser-kotlin-$jxBrowserVersion.jar",
152152
"jxbrowser-compose-$jxBrowserVersion.jar",
153-
"jxbrowser-swing-$jxBrowserVersion.jar",
153+
"jxbrowser-win64-arm-$jxBrowserVersion.jar",
154154
)
155155

156156
buildFile.writeText(
@@ -173,7 +173,7 @@ internal class JxBrowserPluginFunctionalTest {
173173
"toCopy"(jxbrowser.core)
174174
"toCopy"(jxbrowser.kotlin)
175175
"toCopy"(jxbrowser.compose)
176-
"toCopy"(jxbrowser.swing)
176+
"toCopy"(jxbrowser.win64Arm)
177177
}
178178
179179
tasks.register<Copy>("$taskName") {

0 commit comments

Comments
 (0)