Attila Kelemen

Results 340 comments of Attila Kelemen

The easiest if you go to the project properties and adjust the Gradle version to be used. Then you can run the wrapper task (and if you want to, you...

Can you clarify what exactly do you mean on "disabled"? I don't use this tools from NetBeans (except for FindBugs occasionally), rather I use Gradle plugins. That is, the idea...

For PMD and Checkstyle, there is no way they could know where the rule xml is. For other plugins to work, I need to know what information they require and...

The problem is that NB needs the pid of the started java process but I can't get the pid from the Gradle task. So, as is now, you need to...

Though currently, practically every action is associated with a Gradle command, so it would be a little inconsistent (i.e., starting the process via the profiler would ignore whatever was configured...

I don't know of such a request. It is a deeper issue than just getting the process ID for two reasons: 1. The execute method of Gradle tasks block and...

I don't intend that this plugin directly provides support for EE. That is, this is intended to be a core support, and other support should be added by separate plugins,...

It might be because the `annotationProcessor` configuration is not read by the plugin. Can you check if this would help: ```groovy def processors = ['com.google.dagger:dagger-compiler:2.17'] processors.forEach { it -> if...

I have updated the previous code snippet (I missed the `dependencies` part, I guess that is what I get for not trying out the code).

How are you setting it? Through the `CompileOptions.compilerArgs`? Anyway, if something is readable from the Gradle script, then it can be done with relatively little pain.