Pchitttcbn
- Total activity 31
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 6
-
Edited Best way to get the gradle build file (as File) (Kotlin or Groovy) from a project
AnsweredHello, To retrieve the project Gradle build file (build.gradle or build.gradle.kts), I used the following code: project.basePath?.let { val connection = GradleConnector.newConnector().forProjectD... -
Created How to listen to Gradle build file (Kotlin or Groovy) changes?
AnsweredHello, I need to listen to Gradle build file changes in order to automatically launch an action. Is there an easy way to do that? Thanks for help Regards -
Created How to automatically open a 'Tool Window' used as a custom console view when launching a action
AnsweredHello, I created a custom "ToolWindow" registered in plugin.xml: <toolWindow id="My Console" anchor="bottom" factoryClass="com.user.intellij.utils.CustomToolWindowFactory"></t... -
Edited How to programmatically disable/enable a group of actions?
AnsweredHello, I have two actions which are used to launch Gradle tasks in background (non blocking actions). These actions are chaining several gradle tasks (with some of them common, for instance one is ... -
Created How to programmatically parse/retrieve user's parameters in Intellij project Gradle build file?
AnsweredHello all, I need to retrieve some user specific parameters from Gradle build file in an Intellij project (build.gradle.kts) Here a "build.gradle.kts" file content example I need to parse: ... c... -
Created How to programmatically inject custom values for PORT and HOST parameters in a remote configuration at run configuration creation?
AnsweredHello all, I've created a custom remote configuration extended the existing one in order to inject my custom values for PORT and HOST parameters. Just for tests, I tried overriding the "createRe...