Skip to content

Commit 0dfdac4

Browse files
authored
dependency updates (#86)
1 parent 5dbcb77 commit 0dfdac4

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Module Maker Changelog
22

3-
## [1.2.1]
3+
## [1.2.2]
44
- Update min version to 252
55

66
## [1.2.0]

build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ fun properties(key: String) = providers.gradleProperty(key)
55
fun environment(key: String) = providers.environmentVariable(key)
66

77
plugins {
8-
id("java") // Java support
9-
alias(libs.plugins.kotlin) // Kotlin support
8+
kotlin("jvm") version libs.versions.kotlin.get()
9+
id("org.jetbrains.compose") version "1.10.0" // must align with jewel https://github.com/JetBrains/intellij-community/blob/master/platform/jewel/gradle/libs.versions.toml
1010
alias(libs.plugins.gradleIntelliJPlugin) // IntelliJ Platform Gradle Plugin
1111
alias(libs.plugins.changelog) // Gradle Changelog Plugin
1212
alias(libs.plugins.compose) // Gradle Compose Compiler Plugin
@@ -79,6 +79,14 @@ dependencies {
7979
@Suppress("UnstableApiUsage")
8080
composeUI()
8181

82+
bundledModule("intellij.platform.jewel.foundation")
83+
bundledModule("intellij.platform.jewel.ui")
84+
bundledModule("intellij.platform.jewel.ideLafBridge")
85+
bundledModule("intellij.platform.jewel.markdown.core")
86+
bundledModule("intellij.platform.jewel.markdown.ideLafBridgeStyling")
87+
bundledModule("intellij.libraries.compose.foundation.desktop")
88+
bundledModule("intellij.libraries.skiko")
89+
8290
// instrumentationTools()
8391
pluginVerifier()
8492
zipSigner()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = com.joetr.modulemaker
44
pluginName = ModuleMaker
55
pluginRepositoryUrl = https://github.com/j-roskopf/ModuleMakerPlugin
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.2.1
7+
pluginVersion = 1.2.2
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
# Branch numbers are based on the YYYY.R IDE release version numbers.

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
freemarker = "2.3.30"
33
serialization = "1.5.1"
44
jdk = "17"
5-
kotlin = "2.1.20"
5+
kotlin = "2.2.20"
66
changelog = "2.0.0"
77
gradleIntelliJPlugin = "2.10.5"
88
spotless = "6.8.0"

0 commit comments

Comments
 (0)