You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 30, 2025. It is now read-only.
To use it, add the following to your projects' build.gradle file:
plugins {
id 'org.inferred.processors' version '<LATEST VERSION>'
}
The eclipse and idea tasks will now configure your IDE to run annotation processors as part
of their regular compilation when you use an annotationProcessor dependency.
This functions as a combination of the modern "annotationProcessor" and "compileOnly" blocks: it both enables the annotation processor, and makes any annotations it exposes available to use in source code.
Gradle 2.0 and earlier
For users of Gradle 2.0 and earlier, the plugins API is not available. Instead, add the
following to your top-level build.gradle file:
And just the apply directive to your subproject build.gradle files:
apply plugin: 'org.inferred.processors'
You can now include annotation processors with the processor dependency type, as above.
Building from source
To build the project from source, run ./gradlew build, or gradlew.bat build on Windows,
in the root directory of your checkout. You will need Java installed.
License
Copyright 2015 Palantir Technologies, Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
About
Gradle plugin for integrating Java annotation processors