我正在尝试使用maven-antrun-plugin
将生成的.java
文件复制到我当前的源目录。我的问题是生成了我要复制的路径目录的一部分。
我要复制的路径如下所示:
${project.build.directory}/working/<GENERATED_DIRECTORY_I_DONT_KNOW_THE_NAME>/${project.artifactId}-${project.version}/ejbModule
从这一点开始,我想将所有.java文件及其子目录复制(以保留包的树。
请参阅上面的插件配置:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>ejbdeploy-copy</id>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>Moving stubs file to source project.</echo>
<copy todir="${project.build.sourceDirectory}">
<fileset dir="${project.build.directory}/working/**/${project.artifactId}-${project.version}/ejbModule">
<include name="**/*.java"/>
</fileset>
</copy>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
问题是maven-antrun-plugin无法将**
转换为生成的目录名。
我试过这种配置,但它没有工作:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>ejbdeploy-copy</id>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>Moving stubs file to source project.</echo>
<copy todir="${project.build.sourceDirectory}">
<fileset dir="${project.build.directory}/>
<include name="**/*.java"/>
<exclude name="**/ejbModule/"/>
</fileset>
</copy>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
有什么想法吗?
答案 0 :(得分:2)
你是以错误的方式去做的。您绝对不希望将源文件复制到主源目录中。生成的文件永远不会以src/main/java
结尾。这是因为生成的代码不能进行版本控制;这些是在构建期间重新生成的文件,因此应始终位于Maven的构建目录中,默认为target
。
要将这些文件添加为源,而不是将它们复制到主源目录中,您可以使用build-helper-maven-plugin:add-source
目标。这将添加指定的文件夹作为源目录。在这种情况下,您可以使用它并参考包含源代码的生成文件夹。
诀窍是你不知道文件夹的路径。要解决这个问题,您可以使用iterator-maven-plugin
。使用此插件,您可以遍历给定目录的所有子目录;可以使用变量@item@
获取当前目录。这样,配置就目录名称而言是动态的。
<plugin>
<groupId>com.soebes.maven.plugins</groupId>
<artifactId>iterator-maven-plugin</artifactId>
<version>0.4</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>iterator</goal>
</goals>
<configuration>
<folder>${project.build.directory}/working</folder>
<pluginExecutors>
<pluginExecutor>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.12</version>
</plugin>
<goal>add-source</goal>
<configuration>
<sources>
<source>${project.build.directory}/working/@item@/${project.artifactId}-${project.version}/ejbModule</source>
</sources>
</configuration>
</pluginExecutor>
</pluginExecutors>
</configuration>
</execution>
</executions>
</plugin>
答案 1 :(得分:0)
即时解决方案:将生成的目录名称设置为属性:
<fileset dir="${project.build.directory}/working/${generated.dir}/${project.artifactId}-${project.version}/ejbModule">
<include name="**/*.java"/>
</fileset>
该变量可以在pom的properties
部分中声明,或者在某个配置文件中声明本地settings.xml
文件,或者直接从命令行接收:
mvn -Dgenerated.dir=c:\generated clean install
如果生成的目录只是一个,您可以通过Ant中的一个简单程序获取其名称。我建议你把所有的ant东西都带到build.xml
文件中:
<project basedir=".">
<dirset id="dirs" dir="${project.build.directory}/working" includes="*" />
<pathconvert pathsep="${line.separator}" property="generated.dir" refid="dirs">
<chainedmapper>
<mapper type="flatten" />
<regexpmapper from="(.*)" to="\1" />
</chainedmapper>
</pathconvert>
<echo>Moving stubs file from ${generated.dir} to source project.</echo>
<copy todir="${project.build.sourceDirectory}">
<fileset dir="${project.build.directory}/working/${generated.dir}/${project.artifactId}-${project.version}/ejbModule">
<include name="**/*.java" />
</fileset>
</copy>
</project>
然后,它只是从pom中调用它:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>ejbdeploy-copy</id>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<ant antfile="build.xml">
</ant>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
重要提示:尊重maven-antrun-plugin的版本1.8 。