Skip to content

Commit

Permalink
Upgrade IJP to 242.20224.159 (RC) (#508)
Browse files Browse the repository at this point in the history
Also includes a minor amount of cleanup
  • Loading branch information
rock3r authored Aug 1, 2024
1 parent 274723e commit 5ccfde5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ commonmark = "0.22.0"
composeDesktop = "1.7.0-dev1743"
detekt = "1.23.6"
dokka = "1.9.20"
idea = "242.20224.91"
intelliJPlatformBuild = "242.20224.91-EAP-SNAPSHOT"
idea = "242.20224.159"
intelliJPlatformBuild = "242.20224.159-EAP-SNAPSHOT"
ideaPlugin = "2.0.0-rc1"
jna = "5.14.0"
kotlin = "1.9.24"
Expand Down
5 changes: 2 additions & 3 deletions samples/ide-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
google()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
mavenCentral()

intellijPlatform {
defaultRepositories()
}
Expand Down Expand Up @@ -39,12 +39,11 @@ dependencies {

intellijPlatform {
pluginConfiguration { name = "Jewel Demo" }
buildSearchableOptions = false
buildSearchableOptions = false
}

tasks {
runIde {
systemProperties["org.jetbrains.jewel.debug"] = "true"
jvmArgs = listOf("-Xmx3g")
}
}
2 changes: 0 additions & 2 deletions samples/standalone/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ compose.desktop {
application {
mainClass = "org.jetbrains.jewel.samples.standalone.MainKt"

jvmArgs("-Dorg.jetbrains.jewel.debug=true")

nativeDistributions {
targetFormats(TargetFormat.Dmg)
packageName = "Jewel Sample"
Expand Down
6 changes: 0 additions & 6 deletions ui/src/test/kotlin/org/jetbrains/jewel/BasicJewelUiTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.test.junit4.ComposeContentTestRule
import androidx.compose.ui.test.junit4.createComposeRule
import kotlinx.coroutines.runBlocking
import org.junit.Before
import org.junit.Rule

open class BasicJewelUiTest {
Expand All @@ -19,9 +18,4 @@ open class BasicJewelUiTest {
composeRule.setContent(composable)
composeRule.block()
}

@Before
fun setUpProperties() {
System.setProperty("org.jetbrains.jewel.debug", "true")
}
}

0 comments on commit 5ccfde5

Please sign in to comment.