到现在为止,我正在使用命令mvn clean compile hibernate3:hbm2java
启动我的程序。有没有办法将这三个目标合并为一个目标,例如: mvn run
或mvn myapp:run
?
答案 0 :(得分:19)
与我的其他答案完全不同的另一个解决方案是使用目标为exec-maven-plugin
的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
通过这种方式,您不会更改任何其他插件,也不会绑定到任何阶段。
答案 1 :(得分:5)
根据Hibernate3 Maven Plugin网站,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
答案 2 :(得分:3)
您还可以为Maven构建定义默认目标。 然后您的命令行调用将如下所示:
mvn
定义默认目标
将以下几行添加到pom.xml中:
<build>
<defaultGoal>clean compile hibernate3:hbm2java</defaultGoal>
</build>