diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-03 14:05:03 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-03 14:05:12 +0200 |
commit | b26b05106fb21421b2994dc4f782174deea28b84 (patch) | |
tree | 091c59ed0321718cac347d73e179b5d6674be82c /plugins/sonar-core-plugin/pom.xml | |
parent | f5c17aba00cd5e775c9144f6f0e6eefc2a8f3d9d (diff) | |
download | sonarqube-b26b05106fb21421b2994dc4f782174deea28b84.tar.gz sonarqube-b26b05106fb21421b2994dc4f782174deea28b84.zip |
Fix stability of tests depending on order of execution
Default timezone should not be changed by tests because DateUtils keeps instances of SimpleDateFormat in ThreadLocalContext. These instances are executed during the first call, so we can't guarantee which tz is used.
Diffstat (limited to 'plugins/sonar-core-plugin/pom.xml')
-rw-r--r-- | plugins/sonar-core-plugin/pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/sonar-core-plugin/pom.xml b/plugins/sonar-core-plugin/pom.xml index 8eb8d575d34..a4696f082b3 100644 --- a/plugins/sonar-core-plugin/pom.xml +++ b/plugins/sonar-core-plugin/pom.xml @@ -55,6 +55,11 @@ <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <scope>provided</scope> + </dependency> <!-- unit tests --> <dependency> |