我想在目标目录下添加一个生成的文件夹来构建路径。
生成源代码后,我可以在相同的 pom.xml 中执行此操作。 我尝试过如下。那没有用。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.10</version>
<configuration>
<sourceExcludes>
<!-- <sourceExclude>**/.svn/**</sourceExclude> -->
</sourceExcludes>
<sourceIncludes>
<sourceInclude>target/generated-sources/xjc</sourceInclude>
</sourceIncludes>
</configuration>
</plugin>
请帮忙