Branch: refs/heads/master
Home: https://github.com/jenkinsci/gerrit-trigger-plugin
Commit: b6b3604dd1aef269b6ff5c555fb7be727484414b
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/b6b3604dd1aef269b6ff5c555fb7be727484414b
Author: David Pursehouse <[email protected]>
Date: 2012-05-21 (Mon, 21 May 2012)
Changed paths:
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/gerritnotifier/ParameterExpander.java
M gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildFailed.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildFailed_ja.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildStarted.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildStarted_ja.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildSuccessful.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildSuccessful_ja.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildUnstable.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildUnstable_ja.html
Log Message:
-----------
Make patchset revision available as parameter in verified commands
The patchset revision is made available as a parameter in the commands
that are run when the build is started/successful/unstable/failed.
Also fixed a few typos.
Commit: f7395a1f979e60f58251d3a8958f9a384acb353c
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/f7395a1f979e60f58251d3a8958f9a384acb353c
Author: David Pursehouse <[email protected]>
Date: 2012-05-21 (Mon, 21 May 2012)
Changed paths:
M gerrithudsontrigger/src/main/webapp/help-BuildScheduleDelay_ja.html
M
gerrithudsontrigger/src/main/webapp/help-GerritBuildCurrentPatchesOnly_ja.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildFailed_ja.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildStarted_ja.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildSuccessful_ja.html
M
gerrithudsontrigger/src/main/webapp/help-GerritVerifiedCmdBuildUnstable_ja.html
M gerrithudsontrigger/src/main/webapp/help-whatIsGerritTrigger_ja.html
Log Message:
-----------
Add missing Japanese translations
Change-Id: I5e777636e3f6954d4596fd8632771f4cea958252
Commit: 53df3cc6212607580c332a41cc889fa2529dc95a
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/53df3cc6212607580c332a41cc889fa2529dc95a
Author: David Pursehouse <[email protected]>
Date: 2012-05-22 (Tue, 22 May 2012)
Changed paths:
M
gerrithudsontrigger/src/main/webapp/help-GerritBuildCurrentPatchesOnly.html
Log Message:
-----------
Update help text for "build current patches only"
Change-Id: I55da2306b9bf688be02f70c15ac4d129eefd2687
Commit: 6e9bfee152a01c8a012fba0c54e4990e746b0c2b
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/6e9bfee152a01c8a012fba0c54e4990e746b0c2b
Author: Brad Larson <[email protected]>
Date: 2012-05-29 (Tue, 29 May 2012)
Changed paths:
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
Log Message:
-----------
Fix behavior of canceling old patch sets
There were several problems with canceling jobs created by old patch sets
when new patch sets are uploaded.
We were removing old jobs when scheduled() was called, but then removed()
was also called, which would cancel the newly-added build we care about.
Instead, we now store the PatchsetCreated event to track the jobs, and
cancel all jobs for a particular Change # when a new patch set is uploaded
but only remove the exact job when remove() is called.
There was also a problem in calling Future.cancel(), as documented in
https://issues.jenkins-ci.org/browse/JENKINS-13829. This was worked around
by storing the parameters used to create each build and canceling jobs with
the same parameters. This is more in-line with how jobs are canceled from
the Web UI.
Commit: ef00f447f710d4629f0c7b71b079a7d91df9538b
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/ef00f447f710d4629f0c7b71b079a7d91df9538b
Author: Tomas Westling <[email protected]>
Date: 2012-05-30 (Wed, 30 May 2012)
Changed paths:
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
Log Message:
-----------
Merge branch 'master' into i
Change-Id: I250ee3f1d08714e89663c07ccadf2293d7c5ead1
Commit: 5faf92109e4d1bb378465a311a35a46b403378b4
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/5faf92109e4d1bb378465a311a35a46b403378b4
Author: Robert Sandell <[email protected]>
Date: 2012-06-01 (Fri, 01 Jun 2012)
Changed paths:
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/events/ChangeMerged.java
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/events/GerritTriggeredEvent.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/gerritnotifier/ParameterExpander.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritCause.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/data/TriggerContextConverter.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/gerritnotifier/ParameterExpanderTest.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/data/TriggerContextConverterTest.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/mock/Setup.java
Log Message:
-----------
Obey the isScorable property of an event.
Will send code review 0 and verified 0 when the event isn't scorable.
Like for a ChangeMerged event.
Found some more backwards compatibility issues and fixed those.
But more tests of loading old jobs and builds are needed.
Change-Id: I1f74cad96d14c122b2646668a033ac3383476a36
Commit: 9015a0b4f65ca537aa647a7b9bbf11615dd69224
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/9015a0b4f65ca537aa647a7b9bbf11615dd69224
Author: Tomas Westling <[email protected]>
Date: 2012-06-11 (Mon, 11 Jun 2012)
Changed paths:
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/PluginImpl.java
A
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/VerdictCategory.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/config/Config.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/config/IGerritHudsonTriggerConfig.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
M
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/GerritManagement/index.jelly
M
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger/config.jelly
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/mock/DuplicatesUtil.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/mock/MockGerritHudsonTriggerConfig.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/mock/Setup.java
A
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/project/GerritTriggerProjectHudsonTest.java
R
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/AllTests.java
R
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/SpecGerritHudsonTrigger.java
A
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/SpecGerritTriggerHudsonTest.java
R
gerrithudsontrigger/src/test/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/SpecGerritHudsonTrigger.zip
A
gerrithudsontrigger/src/test/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/SpecGerritTriggerHudsonTest.zip
Log Message:
-----------
Configurable verdict categories for trigger on comment
It is now possible to define verdict categories in the Gerrit
management UI. This is used for the trigger-on-comment-added
configuration in a project.
Change-Id: I44e1127f36f9b70bf1c4f6ff48a9f38470543fda
Commit: 9ba008972a84e3ca8b2a90bd6d21295e7d7f4f94
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/9ba008972a84e3ca8b2a90bd6d21295e7d7f4f94
Author: Tomas Westling <[email protected]>
Date: 2012-06-26 (Tue, 26 Jun 2012)
Changed paths:
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/config/Config.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
A
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginChangeMergedEvent.java
A
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginCommentAddedEvent.java
A
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginGerritEvent.java
A
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginPatchsetCreatedEvent.java
A
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginRefUpdatedEvent.java
M
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/Messages.properties
M
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger/config.jelly
A
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginChangeMergedEvent/config.jelly
A
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginCommentAddedEvent/config.jelly
A
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginPatchsetCreatedEvent/config.jelly
A
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginRefUpdatedEvent/config.jelly
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTriggerTest.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/mock/DuplicatesUtil.java
Log Message:
-----------
Config UI changes
Changed from 4 checkboxes to a hetero-list.
One or more trigger types can be added to a project.
Change-Id: I3889817b0f2256b4cf7079fd3591b5c4a1acf57b
Commit: 9904f0e76db48c4dd7380754d6da1f5c26bae550
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/9904f0e76db48c4dd7380754d6da1f5c26bae550
Author: David Pursehouse <[email protected]>
Date: 2012-06-26 (Tue, 26 Jun 2012)
Changed paths:
M
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger/config.jelly
Log Message:
-----------
Help texts for the Custom Build Message options
Add links to the help texts from the config panel.
Also fix file mode on config.jelly (was +x).
Change-Id: I3525e702f22b0699d3f035ec647bd1c7e35f81b2
Commit: d55636a3e27106f904effb7a78da992c1bca80b0
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/d55636a3e27106f904effb7a78da992c1bca80b0
Author: David Pursehouse <[email protected]>
Date: 2012-06-27 (Wed, 27 Jun 2012)
Changed paths:
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/GerritEventListener.java
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/GerritHandler.java
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/GerritEventType.java
A
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/events/DraftPublished.java
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/events/PatchsetCreated.java
M
gerrit-events/src/test/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/GerritHandlerTest.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
A
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginDraftPublishedEvent.java
M
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/Messages.properties
A
gerrithudsontrigger/src/main/resources/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/events/PluginDraftPublishedEvent/config.jelly
M gerrithudsontrigger/src/main/webapp/trigger/help-GerritEventType.html
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/data/TriggerContextConverterTest.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/mock/Setup.java
Log Message:
-----------
Add support for triggering on the `draft-published` event
The `draft-published` event is fired from Gerrit when a change
is moved from draft state to new.
Also fix file mode on GerritTrigger.java (was +x).
Change-Id: Ia4c57b546b69a9c35e5b46b01568d158844b788c
Commit: e697c72126a8b93a1d235f83b2abe0ffa9046448
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/e697c72126a8b93a1d235f83b2abe0ffa9046448
Author: David Pursehouse <[email protected]>
Date: 2012-06-27 (Wed, 27 Jun 2012)
Changed paths:
A
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/events/ChangeMerged.java
R
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/events/ChangeMerged.java
R
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/events/GerritTriggeredEvent.java
A
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/dto/events/GerritTriggeredEvent.java
A gerrithudsontrigger/src/main/webapp/trigger/help-EscapeQuotes.html
R gerrithudsontrigger/src/main/webapp/trigger/help-EscapeQuotes.html
A gerrithudsontrigger/src/main/webapp/trigger/help-EscapeQuotes_ja.html
R gerrithudsontrigger/src/main/webapp/trigger/help-EscapeQuotes_ja.html
R gerrithudsontrigger/src/main/webapp/trigger/help-GerritEventType.html
A gerrithudsontrigger/src/main/webapp/trigger/help-GerritEventType.html
A
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTriggerTest.java
R
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTriggerTest.java
Log Message:
-----------
Remove executable mode flag on files
Several .html and .java files have the executable mode flag set,
possibly as a result of being edited on a Windows system.
Remove the executable flag (chmod -x) on these files.
Change-Id: I2b3cc85ad318daca5da8ad78cb2095a8a9eda891
Commit: 087385cbf8e7775c6a778f76e9dfdceff6aec89c
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/087385cbf8e7775c6a778f76e9dfdceff6aec89c
Author: Robert Sandell <[email protected]>
Date: 2012-06-27 (Wed, 27 Jun 2012)
Changed paths:
M .gitignore
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/GerritHandler.java
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/ssh/SshConnection.java
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/ssh/SshConnectionImpl.java
M
gerrit-events/src/test/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/GerritHandlerTest.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/PluginImpl.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTriggerTest.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/DuplicateGerritListenersHudsonTestCase.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/DuplicateGerritListenersPreloadedProjectHudsonTestCase.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/SpecGerritHudsonTrigger.java
Log Message:
-----------
Merge branch 'master' of github.com:jenkinsci/gerrit-trigger-plugin into m
Commit: a6d458b723ef298b74432ba678730bfaf9416c48
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/a6d458b723ef298b74432ba678730bfaf9416c48
Author: Robert Sandell <[email protected]>
Date: 2012-06-27 (Wed, 27 Jun 2012)
Changed paths:
M .gitignore
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/GerritHandler.java
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/ssh/SshConnection.java
M
gerrit-events/src/main/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/ssh/SshConnectionImpl.java
M
gerrit-events/src/test/java/com/sonyericsson/hudson/plugins/gerrit/gerritevents/GerritHandlerTest.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/PluginImpl.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTriggerTest.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/DuplicateGerritListenersHudsonTestCase.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/DuplicateGerritListenersPreloadedProjectHudsonTestCase.java
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/SpecGerritTriggerHudsonTest.java
Log Message:
-----------
Merge branch 'origin/master' into i
Conflicts:
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/PluginImpl.java
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/spec/SpecGerritTriggerHudsonTest.java
Change-Id: Id469381ec1fc2e5bece28a20e2614bf847471f03
Commit: ba602dfede0cd21e58d77a328e0c0b747fbf9dbc
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/ba602dfede0cd21e58d77a328e0c0b747fbf9dbc
Author: David Pursehouse <[email protected]>
Date: 2012-07-04 (Wed, 04 Jul 2012)
Changed paths:
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTriggerBuildChooser.java
Log Message:
-----------
JENKINS-10055: NPE when commit to build is first commit in repository
When the commit to build is the first commit in the repository, it
does not have a parent commit. In this case use the revision of
the commit itself as parent.
Change-Id: I167c02f10e2b657433da63323e04cc7f77733d65
Commit: cda1755d62de2c302cc2ea0c7ddec176d934316f
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/cda1755d62de2c302cc2ea0c7ddec176d934316f
Author: David Pursehouse <[email protected]>
Date: 2012-07-05 (Thu, 05 Jul 2012)
Changed paths:
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
Log Message:
-----------
Trigger on `draft-published` by default
Update the trigger initialisation to include the draft
published event as default, in addition to patch set created.
Change-Id: I74d0b5b3eb496dcee7ea55cba7afc65eb90cb7be
Commit: a7a7a3f9a982750cb784325b47250815cb17ff65
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/a7a7a3f9a982750cb784325b47250815cb17ff65
Author: David Pursehouse <[email protected]>
Date: 2012-07-09 (Mon, 09 Jul 2012)
Changed paths:
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTrigger.java
M
gerrithudsontrigger/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/version/GerritVersionChecker.java
M gerrithudsontrigger/src/main/webapp/trigger/help-GerritEventType.html
M
gerrithudsontrigger/src/test/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritAdministrativeMonitorTest.java
Log Message:
-----------
Enable trigger on draft published only when supported by Gerrit
The `draft-published` event is only available from Gerrit version
2.5, so add a check to only enable the feature if supported by
the current Gerrit version.
Change-Id: I7686542d23a3660b853c2c94e4cd78985257ca87
Compare:
https://github.com/jenkinsci/gerrit-trigger-plugin/compare/9ac31736fc63...a7a7a3f9a982