我设置了Speedment项目,但我不想运行GUI工具,我不想在我的软件存储库(GIT)中检入生成的文件。如何让Speedment自动重新生成构建中的所有代码?
答案 0 :(得分:0)
在pom.xml
文件中,将执行标记添加到speedment-maven-plugin
,如下所示:
<plugins>
<plugin>
<groupId>com.speedment</groupId>
<artifactId>speedment-maven-plugin</artifactId>
<version>${speedment.version}</version>
<executions>
<execution>
<id>Generate code automatically</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>