如何使Speedment在构建时自动重新生成代码

时间:2017-05-05 23:31:37

标签: java speedment

我设置了Speedment项目,但我不想运行GUI工具,我不想在我的软件存储库(GIT)中检入生成的文件。如何让Speedment自动重新生成构建中的所有代码?

1 个答案:

答案 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>