我在Maven中运行启动启动程序,但是找不到处理器类路径。

Maven调试语句:


DEBUG Spoon.Launcher-模板类路径:[]
INFO Spoon.Launcher-Spoon版本7.0.0
INFO勺子。发射器-跑步勺...
INFO Spoon.Launcher-开始处理...


当到达最后一条语句时,它冻结并且不会继续到该点为止。

<plugin>
    <groupId>fr.inria.gforge.spoon</groupId>
    <artifactId>spoon-maven-plugin</artifactId>
    <executions>
        <execution>
            <configuration>
                <processors>
                    <processor>com.xxxxxx.spoon.utils.RootElementAnnotationProcessor</processor>
                </processors>
                <processorProperties>
                    <processorProperty>
                        <name>com.xxxxxx.spoon.utils.RootElementAnnotationProcessor</name>
                        <properties>
                            <property>
                                <name>classToUpdate</name>
                                <value>com.xxxxxx.rnaservices.Geocode</value>
                            </property>
                        </properties>
                    </processorProperty>
                </processorProperties>
            </configuration>
            <phase>generate-sources</phase>
            <goals>
                <goal>generate</goal>
            </goals>
        </execution>
    </executions>
</plugin>

最佳答案

似乎是一个错误。您会在Github上打开一个问题吗?

08-05 12:59