]> source.dussan.org Git - sonarqube.git/commitdiff
Complete comment on disabled gmaven-plugin-plugin
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 2 Apr 2015 20:46:54 +0000 (22:46 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 2 Apr 2015 20:46:54 +0000 (22:46 +0200)
pom.xml

diff --git a/pom.xml b/pom.xml
index 3871579fd40adc8740944a220664fecd6da702ca..43986894ba4d855a902986c34bb6794a7cd34389 100644 (file)
--- a/pom.xml
+++ b/pom.xml
       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>
             <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);