到目前为止,我正在使用该命令mvn clean compile hibernate3:hbm2java
来启动我的程序。有没有办法将这三个目标结合在一个单一的目标中,例如mvn run
或mvn myapp:run
?
问问题
15167 次
3 回答
18
与我的其他答案完全不同的另一个解决方案是使用exec-maven-plugin
with the goal exec:exec
。
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<executable>mvn</executable>
<arguments>
<argument>clean</argument>
<argument>compile</argument>
<argument>hibernate3:hbm2java</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
然后你就像这样运行它:
mvn exec:exec
通过这种方式,您不会更改任何其他插件,也不会绑定到任何阶段。
于 2012-10-11T09:04:37.810 回答
6
根据Hibernate3 Maven 插件站点,hbm2java
目标默认绑定到generate-sources
阶段。
通常你不必清理项目,你可以运行增量构建。
无论如何,如果您在其中添加maven-clean-plugin
和hibernate3-maven-plugin
,您pom.xml
将在一个命令中拥有所有内容。
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>auto-clean</id>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>hbm2java</id>
<goals>
<goal>hbm2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
如果您希望在hibernate3-maven-plugin
之后运行,compile
只需将目标设置为,compile
因为它将始终在默认阶段之后运行。
因此,要使用一个命令运行所有目标,只需运行:
mvn compile
如果您出于任何原因不想清洁,则只需键入:
mvn compile -Dclean.skip
于 2012-10-10T13:06:28.170 回答
5
您还可以为 Maven 构建定义一个默认目标。然后您的命令行调用将如下所示
mvn
定义默认目标
将以下行添加到您的 pom.xml:
<build>
<defaultGoal>clean compile hibernate3:hbm2java</defaultGoal>
</build>
于 2018-09-05T01:39:29.197 回答