File tree Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 11# Module Maker Changelog
22
3+ ## [ 1.1.1]
4+ - Platform updates
5+
36## [ 1.1.0]
47- Support Multiplatform modules
58
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pluginGroup = com.joetr.modulemaker
44pluginName = ModuleMaker
55pluginRepositoryUrl = 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
1010pluginSinceBuild = 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
1414platformType = 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
1919platformBundledPlugins = 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
3030kotlin.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
4040systemProp.org.gradle.unsafe.kotlin.assignment = true
4141
42- compose.version =1.6.11
42+ compose.version =1.7.3
Original file line number Diff line number Diff line change 22freemarker = " 2.3.30"
33serialization = " 1.5.1"
44jdk = " 17"
5- kotlin = " 2.0 .20"
5+ kotlin = " 2.1 .20"
66changelog = " 2.0.0"
7- gradleIntelliJPlugin = " 2.0.1 "
7+ gradleIntelliJPlugin = " 2.4.0 "
88spotless = " 6.8.0"
99segment = " 1.13.2"
1010junit = " 4.13.2"
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments