summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-04-02 22:46:54 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-04-02 22:46:54 +0200
commit8d7714f2abe47918e4ed330073c369df37ef2ec9 (patch)
tree8d1176679c920e5149daf00e41693a4033f53b1a /pom.xml
parentf0e62de4662fce77f99d1bb7853ae30e54888e86 (diff)
downloadsonarqube-8d7714f2abe47918e4ed330073c369df37ef2ec9.tar.gz
sonarqube-8d7714f2abe47918e4ed330073c369df37ef2ec9.zip
Complete comment on disabled gmaven-plugin-plugin
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 3871579fd40..43986894ba4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -417,8 +417,9 @@
Choosing a random timezone when executing tests allows to detect
early the tests that are heavily coupled with local environment.
- Temporary disabled as gmaven-plugin 1.5 does not support maven parallel builds.
- See http://jira.codehaus.org/browse/GMAVEN-87
+ Temporary disabled as both gmaven-plugin 1.5 and groovy-maven-plugin 2.0
+ do not support maven parallel builds.
+ See http://jira.codehaus.org/browse/GMAVEN-87 and https://jira.codehaus.org/browse/GMAVEN-114
-->
<!--
<plugin>
@@ -435,7 +436,7 @@
<configuration>
<source>
<![CDATA[
- String[] timezones = ["GMT-9"];
+ String[] timezones = ["GMT-9", "UTC", "GMT+9"];
String testTimezone = timezones[new Random().nextInt(timezones.length)];
project.properties['testTimezone'] = testTimezone;
log.info('Timezone used for tests: ' + testTimezone);