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 @@ -8,13 +8,13 @@ A Gradle plug-in that provides convenience methods for adding JxBrowser dependen
88import com.teamdev.jxbrowser.gradle.Repository
99
1010plugins {
11- id(" com.teamdev.jxbrowser" ) version " 1.1 .0"
11+ id(" com.teamdev.jxbrowser" ) version " 1.2 .0"
1212}
1313
1414jxbrowser {
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.
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2222
2323object 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
Original file line number Diff line number Diff 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]
Original file line number Diff line number Diff 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 ") {
You can’t perform that action at this time.
0 commit comments