<execution>
<idassets-1</id>
<phase>generate-sources</phase>
<configuration>
<tasks>
<property name="compile_classpath" refid="maven.compile.classpath"/>
<exec
dir="/company/"
executable="/company/Scripts/generate-sources.sh"
failonerror="true">
<arg line="${compile_classpath}" />
</exec>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
安装mvn 时,哪种方法正常。 但是,当您向项目添加文件或在Intellij中重新编译时,我希望再次执行以扫描和重新生成源。
我不确定Intellij会这样做。是否有Intellij目标可以再次强制执行此操作?
我也一直在尝试 ANT和生成源阶段,所以如果可以从那里做,那也可能没问题。