| <?xml version="1.0" encoding="UTF-8"?> |
| <?eclipse version="3.0"?> |
| <plugin> |
| |
| |
| <!-- =================================================================================== --> |
| <!-- Extension Point: Annotation Processor Factories --> |
| <!-- =================================================================================== --> |
| |
| <extension-point |
| id="annotationProcessorFactory" |
| name="Annotation Processor Factories" |
| schema="schema/annotationProcessorFactory.exsd"/> |
| |
| <!-- =================================================================================== --> |
| <!-- Extension: Compilation Participant --> |
| <!-- =================================================================================== --> |
| <extension |
| id="apt" |
| name="Annotation Processing" |
| point="org.eclipse.jdt.core.compilationParticipant"> |
| <compilationParticipant |
| id="APT" |
| class="org.eclipse.jdt.apt.core.internal.AptCompilationParticipant" |
| loadEarly="true"/> |
| </extension> |
| |
| <!-- =================================================================================== --> |
| <!-- Extension: APT Problem --> |
| <!-- =================================================================================== --> |
| <extension id="marker" point="org.eclipse.core.resources.markers" name="APT Batch Marker"> |
| <super type="org.eclipse.core.resources.problemmarker"/> |
| <super type="org.eclipse.core.resources.textmarker"/> |
| <persistent value="true"/> |
| </extension> |
| |
| <extension id="buildproblem" point="org.eclipse.core.resources.markers" name="APT Build Marker"> |
| <super type="org.eclipse.core.resources.problemmarker"/> |
| <super type="org.eclipse.core.resources.textmarker"/> |
| <persistent value="true"/> |
| </extension> |
| |
| <extension id="configproblem" point="org.eclipse.core.resources.markers" name="APT Configuration Marker"> |
| <super type="org.eclipse.core.resources.problemmarker"/> |
| <super type="org.eclipse.core.resources.textmarker"/> |
| <persistent value="true"/> |
| </extension> |
| |
| <!-- =================================================================================== --> |
| <!-- Extension: Headless Build --> |
| <!-- =================================================================================== --> |
| <extension |
| id="aptBuild" |
| point="org.eclipse.core.runtime.applications"> |
| <application> |
| <run class="org.eclipse.jdt.apt.core.build.AptBuilder"/> |
| </application> |
| </extension> |
| |
| <extension |
| point="org.eclipse.core.runtime.preferences"> |
| <initializer class="org.eclipse.jdt.apt.core.internal.util.AptCorePreferenceInitializer"/> |
| </extension> |
| </plugin> |