Skip to content

Commit

Permalink
fix: intellij missing dependency on java plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
DevSrSouza committed May 6, 2022
1 parent ccfeacf commit 3a4c109
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
# dropbox-focus-intellij-plugin Changelog

## [Unreleased]
### Changed
- Fix IntelliJ missing dependency on com.intellij.modules.java

## [0.1.0]
### Added
- Startup Dialog for Focus projects
- Module folder right-click action to "Focus on Module" with Sync
- Root project folder rick-click action to "Clear focus" with Sync
- Focus Tool Window to Select Module to Focus
### Added
- Startup Dialog for Focus projects
- Module folder right-click action to "Focus on Module" with Sync
- Root project folder rick-click action to "Clear focus" with Sync
- Focus Tool Window to Select Module to Focus
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)

4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pluginGroup = br.com.devsrsouza.intellij.dropboxfocus
pluginName = Focus
# SemVer format -> https://semver.org
pluginVersion = 0.1.0
pluginVersion = 0.1.1

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand All @@ -18,7 +18,7 @@ platformVersion = 2021.1.3

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins = org.jetbrains.kotlin, com.intellij.gradle, org.jetbrains.android, org.intellij.groovy
platformPlugins = org.jetbrains.kotlin, com.intellij.gradle, org.jetbrains.android, org.intellij.groovy, com.intellij.java

# Java language level used to compile sources and to generate the files for - Java 11 is required since 2020.3
javaVersion = 11
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<vendor>DevSrSouza</vendor>

<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.modules.java</depends>
<depends>org.jetbrains.kotlin</depends>
<depends>org.intellij.groovy</depends>
<depends>com.intellij.gradle</depends>
Expand Down

0 comments on commit 3a4c109

Please sign in to comment.