Warnings regarding @javax.inject.Inject

Hi,

since we upgraded to Gradle 2.10 we receive the following warnings when starting a build:

Method: public org.gradle.api.internal.file.FileResolver org.gradle.invocation.DefaultGradle_Decorated.getFileResolver() is not annotated with @Inject but is overriding a method that is annotated with @javax.inject.Inject.  Because it is not annotated with @Inject, the method will not be injected. To fix this, annotate the method with @Inject.
Method: public org.gradle.api.internal.plugins.PluginManagerInternal org.gradle.invocation.DefaultGradle_Decorated.getPluginManager() is not annotated with @Inject but is overriding a method that is annotated with @javax.inject.Inject.  Because it is not annotated with @Inject, the method will not be injected. To fix this, annotate the method with @Inject.
Method: public org.gradle.internal.service.scopes.ServiceRegistryFactory org.gradle.invocation.DefaultGradle_Decorated.getServiceRegistryFactory() is not annotated with @Inject but is overriding a method that is annotated with @javax.inject.Inject.  Because it is not annotated with @Inject, the method will not be injected. To fix this, annotate the method with @Inject.
Method: public org.gradle.configuration.ScriptPluginFactory org.gradle.invocation.DefaultGradle_Decorated.getScriptPluginFactory() is not annotated with @Inject but is overriding a method that is annotated with @javax.inject.Inject.  Because it is not annotated with @Inject, the method will not be injected. To fix this, annotate the method with @Inject.
Method: public org.gradle.api.internal.initialization.ScriptHandlerFactory org.gradle.invocation.DefaultGradle_Decorated.getScriptHandlerFactory() is not annotated with @Inject but is overriding a method that is annotated with @javax.inject.Inject.  Because it is not annotated with @Inject, the method will not be injected. To fix this, annotate the method with @Inject.
Method: public org.gradle.api.internal.GradleDistributionLocator org.gradle.invocation.DefaultGradle_Decorated.getDistributionLocator() is not annotated with @Inject but is overriding a method that is annotated with @javax.inject.Inject.  Because it is not annotated with @Inject, the method will not be injected. To fix this, annotate the method with @Inject.
Method: public org.gradle.internal.event.ListenerManager org.gradle.invocation.DefaultGradle_Decorated.getListenerManager() is not annotated with @Inject but is overriding a method that is annotated with @javax.inject.Inject.  Because it is not annotated with @Inject, the method will not be injected. To fix this, annotate the method with @Inject.
Method: public org.gradle.execution.TaskGraphExecuter org.gradle.invocation.DefaultGradle_Decorated.getTaskGraph() is not annotated with @Inject but is overriding a method that is annotated with @javax.inject.Inject.  Because it is not annotated with @Inject, the method will not be injected. To fix this, annotate the method with @Inject.

We are writing Gradle plugins and are using @com.google.inject. Do you think there is a correlation or is this a “problem” on your part?

Previously we were using Gradle 2.1 and did not receive such warnings.

Thank you for your help!

Cheers,
Thomas