使用 Maven 对 Dagger 进行注解处理

Annotation processing for Dagger with Maven

我正在为使用 Dagger 的项目设置 Maven,但我找不到关于 [=] 注释处理设置的好指南19=]maven 处理器插件

这是我的一部分pom.xml

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.bsc.maven</groupId>
            <artifactId>maven-processor-plugin</artifactId>
            <executions>
                <execution>
                    <id>process</id>
                    <goals>
                        <goal>process</goal>
                    </goals>
                    <phase>generate-sources</phase>
                    <configuration>
                        <outputDirectory>target/generated-sources/annotations</outputDirectory>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

但它无法构建引用注入属性的最后一个模块。 target/generated-sources/annotations 为空。 我的 IDE - InteliJ IDEA

抱歉,关于菜鸟问题​​,但我完全困惑。非常乐意提供任何建议。

我一直在成功使用它。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.1</version>
    <configuration>
        <source>1.7</source>
        <target>1.7</target>
        <annotationProcessors>
            <annotationProcessor>dagger.internal.codegen.ComponentProcessor</annotationProcessor>
        </annotationProcessors>
    </configuration>
</plugin>

我也在使用 IntelliJ IDEA