forked from MobiVM/robovm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
idea maintenance (to support 2019.3) (MobiVM#434)
* * jetbrains intellij plugin for gradle version updated * * intellij maven pom reworked into stand-alone. as mvn:version is not able to update parent version number * * added sonatype repo for snapshot dependencies * * eclipse plugin's maven.pom switched into standalone (without) as tyho plugin is not able update parent's version during release * * release script reworked to properly pick up new idea artifact and update it gradle version * * Idea: release script updated to use property to specify the dependencies. otherview version:commit failed to pick up non existing dependencies (for future version) * * version set to 2.3.10-SNAPSHOT * * java doc and source plugins are now always (was only for release) as these files are needed for snapshot builds * * update commons-compress due to security vulnerability * * upgraded deprecated code, as Idea 2019.3 removed old classes * * ignore gradle files that are created once build with gradle * * reworked to @NotNull to minimize warnings * * optimized imports * Dialog().show() to setVisible() as outdated * still keeping ApplicationComponent as need it to act as it is now (require some amount of rework) * * added RoboFileUtils to handle false result of file api into exceptions * using try with resource where applicable * CompileTask is not added using extensions in plugin.xml * * readme updated with detailed instructions * * xcode setup dialog is not blocking now. as if something went wrong it was blocking idea completely * * reworked to gracefully handle cases when there is no simulators in place (was crashing previously) * * updated to recent org.jetbrains.intellij * * added check for GraphicsEnvironment.isHeadless() as during plugin build using gradle it runs plugin as part of sanity and it will crash as it being run in Headless mode * * source code polish: fixes all lint warning, applied suggestions (like anonymous classes to lambda)
- Loading branch information
Showing
38 changed files
with
669 additions
and
785 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
/src/main/resources/robovm-dist | ||
/.idea/ | ||
/build/ | ||
org.robovm.idea.iml | ||
org.robovm.idea.iml | ||
/.gradle/ |
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
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
260 changes: 106 additions & 154 deletions
260
plugins/idea/src/main/java/org/robovm/idea/RoboVmPlugin.java
Large diffs are not rendered by default.
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
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
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
Oops, something went wrong.