Skip to content

Commit 9842888

Browse files
authored
Platform updates (#77)
1 parent 3172c6e commit 9842888

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Module Maker Changelog
22

3+
## [1.1.1]
4+
- Platform updates
5+
36
## [1.1.0]
47
- Support Multiplatform modules
58

build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ buildscript {
2323
mavenCentral()
2424
google()
2525
maven { url = uri("https://plugins.gradle.org/m2/") }
26+
maven {
27+
url = uri("https://www.jetbrains.com/intellij-repository/releases")
28+
}
2629
}
2730
}
2831

@@ -48,7 +51,7 @@ dependencies {
4851
implementation(compose.materialIconsExtended)
4952
implementation(libs.segment)
5053

51-
val version = "0.8.10"
54+
val version = "0.8.18"
5255
val macTarget = "macos-arm64"
5356
val windowsTarget = "windows-x64"
5457
val linuxTarget = "linux-x64"
@@ -61,6 +64,7 @@ dependencies {
6164

6265
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
6366
intellijPlatform {
67+
javaCompiler("243.26053.29") // https://github.com/JetBrains/intellij-platform-gradle-plugin/issues/1894
6468
create(properties("platformType").get(), properties("platformVersion").get())
6569

6670
// Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins.
@@ -69,7 +73,7 @@ dependencies {
6973
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
7074
plugins(properties("platformPlugins").map { it.split(',') })
7175

72-
instrumentationTools()
76+
// instrumentationTools()
7377
pluginVerifier()
7478
zipSigner()
7579
}

gradle.properties

Lines changed: 4 additions & 4 deletions
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.1.0
7+
pluginVersion = 1.1.1
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 222
@@ -13,7 +13,7 @@ pluginSinceBuild = 222
1313
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1414
platformType = AI
1515
# AS version and patch at the end
16-
platformVersion = 2024.1.2.1
16+
platformVersion = 2024.3.1.1
1717

1818
# Example: platformBundledPlugins = com.intellij.java
1919
platformBundledPlugins = com.intellij.java
@@ -24,7 +24,7 @@ platformPlugins =
2424

2525
# Gradle Releases -> https://github.com/gradle/gradle/releases
2626
# update gradle-wrapper.properties and run ./gradlew wrapper
27-
gradleVersion = 8.9
27+
gradleVersion = 8.13
2828

2929
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
3030
kotlin.stdlib.default.dependency = false
@@ -39,4 +39,4 @@ org.gradle.caching = true
3939
# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment
4040
systemProp.org.gradle.unsafe.kotlin.assignment = true
4141

42-
compose.version=1.6.11
42+
compose.version=1.7.3

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
freemarker = "2.3.30"
33
serialization = "1.5.1"
44
jdk = "17"
5-
kotlin = "2.0.20"
5+
kotlin = "2.1.20"
66
changelog = "2.0.0"
7-
gradleIntelliJPlugin = "2.0.1"
7+
gradleIntelliJPlugin = "2.4.0"
88
spotless = "6.8.0"
99
segment = "1.13.2"
1010
junit = "4.13.2"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)