Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added explicit dependency on a JSON plugin #1246

Merged
merged 1 commit into from
Oct 20, 2024
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Updated libraries versions [#1235](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1235)
- MavenProjectBuilder API migration [#1237](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1237)
- Improved navigation to the file located in the virtual `Junk` directory [#1245](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1245)
- Added explicit dependency on a [JSON](https://plugins.jetbrains.com/plugin/25364-json) plugin [#1246](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1246)

### Deprecated
- Use `IDE` modality [#1232](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1232)
Expand Down
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,10 @@ dependencies {

// https://plugins.jetbrains.com/intellij-platform-explorer/extensions

// JSON:
// https://plugins.jetbrains.com/plugin/25364-json
plugin("com.intellij.modules.json:243.19420.21")

// Ant:
// https://plugins.jetbrains.com/plugin/23025-ant
plugin("AntSupport:243.19420.21")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ intellij.update.since.until.build=true
intellij.plugin.id=com.intellij.idea.plugin.sap.commerce
intellij.plugin.name=SAP-Commerce-Developers-Toolset
intellij.plugin.version=2024.3.0
intellij.plugin.since.build=243.16718.32
intellij.plugin.since.build=243.19420.21
intellij.plugin.until.build=243.*

#intellij.version=241.15989.150
Expand Down
Loading