Zaman Zamanli

Software Engineer at Synopsys
- Total activity 17
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 7
-
Created GradleSettings.getInstance(project) throws 'java.lang.IllegalStateException' exception
When I run the following code, I end up with the exception during unit tests. It works fine in production code. GradleSettings.getInstance(project); The error is the following: "@NotNull method org... -
Created How to get pipenv path in user's settings from the plugin?
AnsweredIntelliJ automatically detects pipenv. The user has the ability to change this from the preferences as well. How can I get the path to pipenv from my plugin? -
Created How to get NPM path in user's settings from the plugin?
AnsweredIntelliJ automatically detects Node.js and NPM. The user has the ability to change this from the preferences as well. How can I get the path to Node.js and the path to NPM from my plugin? -
Edited How can I use already downloaded Gradle executable from my plugin?
AnsweredI want to get the path of the already downloaded Gradle executable from my plugin. Gradle plugin downloads the Gradle to a location similar to the following "{GRADLE_HOME}/wrapper/dists/gradle-5.1.... -
Edited CLion - clean project
I am developing plugin for CLion and I need to "clean" the project. Which command do I need to use to do equivalent of a running a "make clean"? This is how we get build command: RunnerAndConfigu...