Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Module Maker Changelog

## [1.2.1]
## [1.2.2]
- Update min version to 252

## [1.2.0]
Expand Down
12 changes: 10 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ fun properties(key: String) = providers.gradleProperty(key)
fun environment(key: String) = providers.environmentVariable(key)

plugins {
id("java") // Java support
alias(libs.plugins.kotlin) // Kotlin support
kotlin("jvm") version libs.versions.kotlin.get()
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
alias(libs.plugins.gradleIntelliJPlugin) // IntelliJ Platform Gradle Plugin
alias(libs.plugins.changelog) // Gradle Changelog Plugin
alias(libs.plugins.compose) // Gradle Compose Compiler Plugin
Expand Down Expand Up @@ -79,6 +79,14 @@ dependencies {
@Suppress("UnstableApiUsage")
composeUI()

bundledModule("intellij.platform.jewel.foundation")
bundledModule("intellij.platform.jewel.ui")
bundledModule("intellij.platform.jewel.ideLafBridge")
bundledModule("intellij.platform.jewel.markdown.core")
bundledModule("intellij.platform.jewel.markdown.ideLafBridgeStyling")
bundledModule("intellij.libraries.compose.foundation.desktop")
bundledModule("intellij.libraries.skiko")

// instrumentationTools()
pluginVerifier()
zipSigner()
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.joetr.modulemaker
pluginName = ModuleMaker
pluginRepositoryUrl = https://github.com/j-roskopf/ModuleMakerPlugin
# SemVer format -> https://semver.org
pluginVersion = 1.2.1
pluginVersion = 1.2.2

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# Branch numbers are based on the YYYY.R IDE release version numbers.
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
freemarker = "2.3.30"
serialization = "1.5.1"
jdk = "17"
kotlin = "2.1.20"
kotlin = "2.2.20"
changelog = "2.0.0"
gradleIntelliJPlugin = "2.10.5"
spotless = "6.8.0"
Expand Down
Loading