Skip to content

Commit

Permalink
v1.0.3 make plugin compatible with all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso committed Dec 23, 2021
1 parent 073bd21 commit 351efa4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions ideaplugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "de.jensklingenberg"
version = "1.0.2"
version = "1.0.3"

repositories {
mavenCentral()
Expand All @@ -20,7 +20,11 @@ repositories {
}

dependencies {
implementation(compose.desktop.currentOs)
implementation(compose.desktop.linux_x64)
implementation(compose.desktop.linux_arm64)
implementation(compose.desktop.windows_x64)
implementation(compose.desktop.macos_arm64)
implementation(compose.desktop.macos_x64)
implementation(project(":converter", "default"))
testImplementation("junit", "junit", "4.12")
}
Expand All @@ -43,8 +47,6 @@ tasks{
version.set(properties("pluginVersion"))
sinceBuild.set(properties("pluginSinceBuild"))
untilBuild.set(properties("pluginUntilBuild"))


}
}

2 changes: 1 addition & 1 deletion ideaplugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ platformVersion = 2021.2.3
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 203
pluginUntilBuild = 213.*
pluginVersion = 1.0.2
pluginVersion = 1.0.3

0 comments on commit 351efa4

Please sign in to comment.