generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(gradle): update IntelliJ platform version and add shire-json lan…
…guage support #100 This commit updates the IntelliJ platform version to 243 and the idea version to IU-2024.3 in the gradle-243.properties file. It also adds support for the shire-json language in the build.gradle.kts file. Other changes include enabling Gradle Configuration Cache and Build Cache, and updating the Gradle version to 8.7.
- Loading branch information
Showing
5 changed files
with
96 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html | ||
propertiesPluginEnvironmentNameProperty=platformVersion | ||
ideaPlatformVersion=243 | ||
ideaVersion=IU-2024.3 | ||
|
||
pluginGroup = com.github.phodal.shire | ||
pluginName = shire | ||
pluginRepositoryUrl = https://github.com/phodal/shire | ||
# SemVer format -> https://semver.org | ||
pluginVersion = 0.8.2 | ||
|
||
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html | ||
pluginSinceBuild = 243 | ||
pluginUntilBuild = 243.* | ||
|
||
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension | ||
platformType = IU | ||
platformVersion = 2024.3 | ||
|
||
# plugin | ||
|
||
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html | ||
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 | ||
platformPlugins = PythonCore:241.14494.240 | ||
|
||
goPlugin=org.jetbrains.plugins.go:241.14494.240 | ||
|
||
nodejsPlugin=NodeJS:241.14494.155 | ||
|
||
sonarPlugin = org.sonarlint.idea:10.8.1.79205 | ||
|
||
plantUmlPlugin = PlantUML integration:7.10.1-IJ2023.2 | ||
|
||
wireMockPlugin=com.intellij.wiremock:241.14494.150 | ||
|
||
testAutomationPlugin=com.intellij.aqua:241.14494.240 | ||
|
||
jsonPlugin=com.intellij.modules.json:243.15521.24 | ||
|
||
# Gradle Releases -> https://github.com/gradle/gradle/releases | ||
gradleVersion = 8.7 | ||
|
||
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib | ||
kotlin.stdlib.default.dependency = false | ||
|
||
# Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html | ||
org.gradle.configuration-cache = true | ||
|
||
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html | ||
org.gradle.caching = true | ||
|
||
javaVersion = 17 | ||
|
||
kotlin.daemon.jvmargs=-Xmx2048m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters