Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
English (United States)
简体中文
Sign in
Nikita Skvortsov
Total activity
69
Last activity
October 16, 2024 09:02
Member since
September 22, 2017 16:47
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
26
Activity overview
Articles (0)
Posts (0)
Comments (43)
Sort by recent activity
Recent activity
Votes
Created
August 05, 2019 13:59
Since 2019.2 one needs to place an explicit dependency on 'java' plugin, as it was finally detached from the platform. Here is the patch:diff --git a/build.gradle b/build.gradleindex 19c429f..cce56...
Community
IntelliJ IDEA Open API and Plugin Development
package does not exists issue when removing my graddle version '2018.3' option
1 vote
Created
October 16, 2024 09:02
sshah that is expected to work on both, Sync and Run tasks (Builds) through IDE.There was a slight problem with starting tasks using double-click in the Gradle toolwindow: IDEA-298823 . Does it lo...
Community
IntelliJ IDEA Open API and Plugin Development
Plugin - How can I run a task before Gradle project is linked?
0 votes
Edited
April 04, 2024 14:19
First of all, there is an important difference between CompilerManager and ProjectTaskManager APIs.The former is an interface to the built-in compiler and build system (aka JPS), while the latter i...
Community
IntelliJ IDEA Open API and Plugin Development
Compiling Kotlin files using CompilerManager fails
0 votes
Edited
November 13, 2023 16:53
Seems like your plugin registers a new `SdkType` extending `JavaSdkType`. I thought about your IDEA plugin registering a new sdk with type `JavaSdkType` and name matching one configured in `idea.mo...
Community
IntelliJ IDEA Open API and Plugin Development
Unset JDK for a Gradle project
0 votes
Created
November 07, 2023 09:08
Official comment
A dummy SDK in IntelliJ indeed can do the trick.When reloading project, IDEA will try to respect Gradle option idea.module.jdkName (reference) and will look for SDK with matching name. So if the du...
Community
IntelliJ IDEA Open API and Plugin Development
Unset JDK for a Gradle project
0 votes
Created
April 21, 2023 08:58
Thank you for the follow up and for sharing your code for those who come after you )
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible for a plugin to configure a gradle task for a single execution?
0 votes
Created
February 02, 2023 09:17
Thank you for the followup!
Community
IntelliJ IDEA Open API and Plugin Development
Plugin - How can I run a task before Gradle project is linked?
0 votes
Created
November 25, 2022 13:59
Please take a look at com.intellij.externalSystem.DependencyModifierServiceit should be available in IDEA 2021.1 and later. This service delegates to proper build system (Maven or Gradle) under the...
Community
IntelliJ IDEA Open API and Plugin Development
Install dependency into Gradle project with disabled Android plugin programmatically
0 votes
Created
November 22, 2022 12:28
You can find more details on launching external processes here: https://plugins.jetbrains.com/docs/intellij/run-configuration-execution.html#running-a-process
Community
IntelliJ IDEA Open API and Plugin Development
ExternalSystemUtil Questions
0 votes
Created
November 21, 2022 14:40
If you want to have more control about Gradle execution from IDEA, you can use `GradleTaskManager`. But it still will not allow you to set StdIn. If you need this level of control over the child Gr...
Community
IntelliJ IDEA Open API and Plugin Development
ExternalSystemUtil Questions
0 votes
«
First
‹
Previous
Next
›
Last
»