Nullsink
- Total activity 31
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Edited Control Annotation Processing for main/production and test sources separately
AnsweredIs it possible to control Annotation Processing settings of a module on a source-root level? For example, to enable it for test sources only? Below is a use case of mine. I work with a Maven projec... -
Edited Failing to add a dependency on a plugin available in the file system
AnsweredI have 2 local plugins and I've been trying to set up one of them as a dependency for the other one. Following these instructions I encountered a problem.build.gradle.kts:intellij { version.set... -
Edited Plugin creating multiple files in bulk/batch/grouped events/ mode
AnsweredI'm developing a plugin that provides an action that creates multiple files according to certain rules.To create the files, I am using Velocity templates which the plugin also provides.Naturally, I... -
Edited API for reporting/highlighting problems outside of inspections
AnsweredI am looking for a simple way to report problems related to language elements to the user. I've read about LocalInspectionTool and am familiar with the ProblemDescriptor interface. However, for my ... -
Edited Invalid PsiJavaFile in BulkFileListener.after() after file deletion event
AnsweredI have an implementation of BulkFileListener in which I listen for deletion events in order to: 1. Find all files that reference classes defined in the file being deleted (let's call them "affected...