确定Maven配置文件的日期

时间:2013-03-05 12:04:53

标签: java maven testing

作为进一步的问题:Fake system clock on certain date

是否可以在Maven个人资料中设置特定日期?毕竟,我使用测试配置文件来确定测试数据库的使用情况。

1 个答案:

答案 0 :(得分:0)

在您的Maven个人资料中,您可以通过Surefire将日期时间作为系统属性传递:

...
<profile>
    ...
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <systemPropertyVariables>
                        <testDateTime>2013-01-01T00:00:00.000Z</testDateTime>
                    </systemPropertyVariables>
                </configuration>
            </plugin>
        </plugins>
    </build>
</profile>
...

然后在你的测试中使用它:

final String dateTime = System.getProperty("testDateTime");
// parse date-time etc...

这有帮助吗?