[jenkinsci/workflow-plugin] 7b6d78: Use a modified version of CpsClosure to make the '...

2015-06-21 Thread GitHub
  Branch: refs/heads/user-defined-global-libs
  Home:   https://github.com/jenkinsci/workflow-plugin
  Commit: 7b6d786dfaf98006113d3d076a57ed46c24d8258
  
https://github.com/jenkinsci/workflow-plugin/commit/7b6d786dfaf98006113d3d076a57ed46c24d8258
  Author: Kohsuke Kawaguchi 
  Date:   2015-06-20 (Sat, 20 Jun 2015)

  Changed paths:
M cps/pom.xml
A cps/src/main/java/org/jenkinsci/plugins/workflow/cps/CpsClosure2.java
M cps/src/main/java/org/jenkinsci/plugins/workflow/cps/CpsGroovyShell.java
M cps/src/main/java/org/jenkinsci/plugins/workflow/cps/CpsScript.java

  Log Message:
  ---
  Use a modified version of CpsClosure to make the 'sleep' method work.

The method selection logic in the body of a closure is such that a method
defined on groovy.lang.Closure object takes a precedence over any methods
exposed via 'owner' or 'delegate'. This applies to so-called expando methods
that are added externally (such as sleep), not just methods inheretently
defined by JDK (such as hashCode). The following code illustrates this behavior:

=
class Foo {
public void test() {
  sleep(3); // this prints fake-sleep(3)
  def c = { sleep(4); } // this does NOT print fake-sleep(4)
  c();
}

public void sleep(long l) {
  System.out.println("fake-sleep(${l})");
}
}

new Foo().test()
=

Before PR 131, CPS transformation was incorrectly converting 'sleep(4)' above
to 'this.sleep(4)', which will print out fake-sleep(4) because 'this' points
to the Foo instance and not the closure instance.
In PR 131, I fixed this bug in groovy-cps, which means now the sleep()
call in the workflow is not calling into SleepStep, and instead rather
goes into 'java.lang.Object.sleep(long)' added by Groovy.

This change fixes it, in conjunction with cloudbees/groovy-sandbox #13,
by defining the sleep() method explicitly on the closure class we use
(CpsClosure2), and delegate that call to the closure 'owner'.

The net result is that in workflow, such call will get routed to the
DSL.invokeMethod() which then goes to SleepStep.

See: https://github.com/cloudbees/groovy-cps/pull/13


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/backlog-plugin] 03b213: Add ApiKey field to execute Backlog API v2

2015-06-21 Thread GitHub
  Branch: refs/heads/notify-pull-request
  Home:   https://github.com/jenkinsci/backlog-plugin
  Commit: 03b213c17386c07e450a5dfdfbfce55292510e30
  
https://github.com/jenkinsci/backlog-plugin/commit/03b213c17386c07e450a5dfdfbfce55292510e30
  Author: nakamura 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M pom.xml
M src/main/java/hudson/plugins/backlog/BacklogProjectProperty.java
M 
src/main/resources/hudson/plugins/backlog/BacklogProjectProperty/config.jelly
M src/test/java/hudson/plugins/backlog/BacklogLinkActionTest.java
M src/test/java/hudson/plugins/backlog/BacklogProjectPropertyTest.java

  Log Message:
  ---
  Add ApiKey field to execute Backlog API v2


  Commit: 93842e6f8171c885f163a796d37c0cc740854002
  
https://github.com/jenkinsci/backlog-plugin/commit/93842e6f8171c885f163a796d37c0cc740854002
  Author: nakamura 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
A src/main/java/hudson/plugins/backlog/BacklogPullRequestNotifier.java
M src/main/resources/hudson/plugins/backlog/Messages.properties
M src/main/resources/hudson/plugins/backlog/Messages_ja.properties

  Log Message:
  ---
  Add Notifier to pull request


Compare: 
https://github.com/jenkinsci/backlog-plugin/compare/03b213c17386^...93842e6f8171

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/git-tag-message-plugin] 0b970a: Add automated tests.

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/git-tag-message-plugin
  Commit: 0b970a7fcb9da217056f063118a8a97796ba904c
  
https://github.com/jenkinsci/git-tag-message-plugin/commit/0b970a7fcb9da217056f063118a8a97796ba904c
  Author: Christopher Orr 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
A 
src/test/java/org/jenkinsci/plugins/gittagmessage/GitTagMessageExtensionTest.java

  Log Message:
  ---
  Add automated tests.


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/mesos-plugin] 4ad797: reduce logging level for some status things

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/mesos-plugin
  Commit: 4ad79742cad45d94955d40d2a22ac11cf57d0e9f
  
https://github.com/jenkinsci/mesos-plugin/commit/4ad79742cad45d94955d40d2a22ac11cf57d0e9f
  Author: Steve Hoffman 
  Date:   2015-06-02 (Tue, 02 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/mesos/JenkinsScheduler.java

  Log Message:
  ---
  reduce logging level for some status things

Lowering the logging level from INFO to FINE for a few items.
The noisiest one is the 'not matching slave' message in mesos environments
where only a few of the slaves are jenkins candidates.  The non-matching ones
dump many large json objects into the logs which really falls more into
the debugging camp hence the lower level


  Commit: 4a405c5300a9067f883482991de0f6089102d992
  
https://github.com/jenkinsci/mesos-plugin/commit/4a405c5300a9067f883482991de0f6089102d992
  Author: Manivannan Selvaraj 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/mesos/JenkinsScheduler.java

  Log Message:
  ---
  Merge pull request #118 from bacoboy/quieter-logging

reduce logging level for some status things


Compare: 
https://github.com/jenkinsci/mesos-plugin/compare/9bd9b74ca17c...4a405c5300a9

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/mesos-plugin] f649fe: Reverted explicit setting of hostname for (default...

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/mesos-plugin
  Commit: f649fee49e9cb4ce68ad4e80a745ec71bc59f9a2
  
https://github.com/jenkinsci/mesos-plugin/commit/f649fee49e9cb4ce68ad4e80a745ec71bc59f9a2
  Author: Nicki Watt 
  Date:   2015-05-25 (Mon, 25 May 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/mesos/JenkinsScheduler.java

  Log Message:
  ---
  Reverted explicit setting of hostname for (default) host networking mode


  Commit: 4415afd869514c4d755a2ceb935a8a7637ed3ef3
  
https://github.com/jenkinsci/mesos-plugin/commit/4415afd869514c4d755a2ceb935a8a7637ed3ef3
  Author: Manivannan Selvaraj 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/mesos/JenkinsScheduler.java

  Log Message:
  ---
  Merge pull request #110 from nickithewatt/master

Reverted explicit setting of hostname for (default) host networking mode


Compare: 
https://github.com/jenkinsci/mesos-plugin/compare/4a405c5300a9...4415afd86951

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/git-tag-message-plugin] a4887b: Add automated tests.

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/git-tag-message-plugin
  Commit: a4887b13975440257137c05f61279395703bfcf4
  
https://github.com/jenkinsci/git-tag-message-plugin/commit/a4887b13975440257137c05f61279395703bfcf4
  Author: Christopher Orr 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
A 
src/test/java/org/jenkinsci/plugins/gittagmessage/GitTagMessageExtensionTest.java

  Log Message:
  ---
  Add automated tests.


  Commit: 64b3ffb427d50d9413a3cb8b652dc067403e9cbc
  
https://github.com/jenkinsci/git-tag-message-plugin/commit/64b3ffb427d50d9413a3cb8b652dc067403e9cbc
  Author: Christopher Orr 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/gittagmessage/GitTagMessageAction.java
M 
src/main/java/org/jenkinsci/plugins/gittagmessage/GitTagMessageExtension.java
M 
src/main/resources/org/jenkinsci/plugins/gittagmessage/GitTagMessageExtension/help.html
M src/main/resources/org/jenkinsci/plugins/gittagmessage/Messages.properties
M 
src/test/java/org/jenkinsci/plugins/gittagmessage/GitTagMessageExtensionTest.java

  Log Message:
  ---
  [FIXED JENKINS-28705] Export the tag name for commits with a tag associated.


Compare: 
https://github.com/jenkinsci/git-tag-message-plugin/compare/0b970a7fcb9d...64b3ffb427d5

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/git-tag-message-plugin] 83ee92: [maven-release-plugin] prepare release git-tag-mes...

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/git-tag-message-plugin
  Commit: 83ee9295a24942be70463b4a5224064e7ccebfbf
  
https://github.com/jenkinsci/git-tag-message-plugin/commit/83ee9295a24942be70463b4a5224064e7ccebfbf
  Author: Christopher Orr 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M pom.xml

  Log Message:
  ---
  [maven-release-plugin] prepare release git-tag-message-1.4


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/git-tag-message-plugin]

2015-06-21 Thread GitHub
  Branch: refs/tags/git-tag-message-1.4
  Home:   https://github.com/jenkinsci/git-tag-message-plugin

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/git-tag-message-plugin] 1ba6c9: [maven-release-plugin] prepare for next developmen...

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/git-tag-message-plugin
  Commit: 1ba6c9c2c19dbce60fd4e0d57726ca6b3aab3d59
  
https://github.com/jenkinsci/git-tag-message-plugin/commit/1ba6c9c2c19dbce60fd4e0d57726ca6b3aab3d59
  Author: Christopher Orr 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M pom.xml

  Log Message:
  ---
  [maven-release-plugin] prepare for next development iteration


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/compress-artifacts-plugin] 59bf4a: Revert "[FIXED JENKINS-28862] Optimize artifact ar...

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/compress-artifacts-plugin
  Commit: 59bf4a86f2df08222555d457e6f383d40a73142a
  
https://github.com/jenkinsci/compress-artifacts-plugin/commit/59bf4a86f2df08222555d457e6f383d40a73142a
  Author: Oliver Gondža 
  Date:   2015-06-20 (Sat, 20 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/compress_artifacts/ZipStorage.java

  Log Message:
  ---
  Revert "[FIXED JENKINS-28862] Optimize artifact archiving"

This reverts commit 8650e1d6ae90cade6920d2447688c5935a4f457f.


  Commit: 6f6932c8712602c9760d8a7e7eb26a06c676a8df
  
https://github.com/jenkinsci/compress-artifacts-plugin/commit/6f6932c8712602c9760d8a7e7eb26a06c676a8df
  Author: Oliver Gondža 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
A 
src/main/java/org/jenkinsci/plugins/compress_artifacts/TrueZipArchiver.java
M src/main/java/org/jenkinsci/plugins/compress_artifacts/ZipStorage.java

  Log Message:
  ---
  [JENKINS-28862][JENKINS-27042] Perform archiving using truezip via one 
remoting roundtrip.

JENKINS-28862 was resolved so it introduced a regression for JENKINS-27042
in 1.6. Now both should be resolved implementing hudson.util.io.Archiver,
based on truezip.


Compare: 
https://github.com/jenkinsci/compress-artifacts-plugin/compare/af852f71458e...6f6932c87126

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/compress-artifacts-plugin] a712c7: [maven-release-plugin] prepare release compress-ar...

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/compress-artifacts-plugin
  Commit: a712c70a6cb64ec66d0021e6b394d2dcf2a6c2ef
  
https://github.com/jenkinsci/compress-artifacts-plugin/commit/a712c70a6cb64ec66d0021e6b394d2dcf2a6c2ef
  Author: Oliver Gondža 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M pom.xml

  Log Message:
  ---
  [maven-release-plugin] prepare release compress-artifacts-1.7


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/compress-artifacts-plugin]

2015-06-21 Thread GitHub
  Branch: refs/tags/compress-artifacts-1.7
  Home:   https://github.com/jenkinsci/compress-artifacts-plugin

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/compress-artifacts-plugin] 1807a3: [maven-release-plugin] prepare for next developmen...

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/compress-artifacts-plugin
  Commit: 1807a3cbf53a21c5b4fe40f1b03304bc5b9d4afc
  
https://github.com/jenkinsci/compress-artifacts-plugin/commit/1807a3cbf53a21c5b4fe40f1b03304bc5b9d4afc
  Author: Oliver Gondža 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M pom.xml

  Log Message:
  ---
  [maven-release-plugin] prepare for next development iteration


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/mesos-plugin] 41a155: Fix infinite loop in the port mapping code

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/mesos-plugin
  Commit: 41a15537199cbd16d8b288eab410799ed6cef006
  
https://github.com/jenkinsci/mesos-plugin/commit/41a15537199cbd16d8b288eab410799ed6cef006
  Author: Stephen Liang 
  Date:   2015-06-12 (Fri, 12 Jun 2015)

  Changed paths:
M .gitignore
M pom.xml
M src/main/java/org/jenkinsci/plugins/mesos/JenkinsScheduler.java
A src/test/java/org/jenkinsci/plugins/mesos/JenkinsSchedulerTest.java

  Log Message:
  ---
  Fix infinite loop in the port mapping code


  Commit: d4c4f8e51d9827d5aa1bf1845150fefbb47b976d
  
https://github.com/jenkinsci/mesos-plugin/commit/d4c4f8e51d9827d5aa1bf1845150fefbb47b976d
  Author: Manivannan Selvaraj 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M .gitignore
M pom.xml
M src/main/java/org/jenkinsci/plugins/mesos/JenkinsScheduler.java
A src/test/java/org/jenkinsci/plugins/mesos/JenkinsSchedulerTest.java

  Log Message:
  ---
  Merge pull request #119 from stephenliang/fix_infinite_loop

Fix infinite loop in the port mapping code


Compare: 
https://github.com/jenkinsci/mesos-plugin/compare/4415afd86951...d4c4f8e51d98

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/mesos-plugin] 138a49: fix hashcode lookup resetting framework on save

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/mesos-plugin
  Commit: 138a499b7cb82b39235f0ff4d30e6fc8ce740f2d
  
https://github.com/jenkinsci/mesos-plugin/commit/138a499b7cb82b39235f0ff4d30e6fc8ce740f2d
  Author: Steve Hoffman 
  Date:   2015-06-07 (Sun, 07 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/mesos/MesosCloud.java

  Log Message:
  ---
  fix hashcode lookup resetting framework on save


  Commit: e9c1b29210f510bb58272bb61f07d3af184e37a7
  
https://github.com/jenkinsci/mesos-plugin/commit/e9c1b29210f510bb58272bb61f07d3af184e37a7
  Author: Manivannan Selvaraj 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/mesos/MesosCloud.java

  Log Message:
  ---
  Merge pull request #120 from bacoboy/mesoscloud_hashcode

fix hashcode lookup resetting framework on save


Compare: 
https://github.com/jenkinsci/mesos-plugin/compare/d4c4f8e51d98...e9c1b29210f5

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/build-history-metrics-plugin] 26feda: Some clean up

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/build-history-metrics-plugin
  Commit: 26feda733fea366e0604060e3b3f236d1c647181
  
https://github.com/jenkinsci/build-history-metrics-plugin/commit/26feda733fea366e0604060e3b3f236d1c647181
  Author: mcgin 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M src/main/java/jenkins/plugins/model/BuildMessage.java
M src/main/java/jenkins/plugins/mttr/MetricsAction.java
M src/main/java/jenkins/plugins/util/GraphUtil.java
M src/main/java/jenkins/plugins/util/ReadUtil.java
M src/test/java/jenkins/plugins/mttr/IntegrationTest.java

  Log Message:
  ---
  Some clean up


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/build-history-metrics-plugin] 02413e: Making integration tests a tiny bit faster

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/build-history-metrics-plugin
  Commit: 02413eacb1eb6a413cf4f06d6f358b8ea9103de3
  
https://github.com/jenkinsci/build-history-metrics-plugin/commit/02413eacb1eb6a413cf4f06d6f358b8ea9103de3
  Author: mcgin 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M src/test/java/jenkins/plugins/mttr/IntegrationTest.java

  Log Message:
  ---
  Making integration tests a tiny bit faster


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/cmakebuilder-plugin] c8d556: do not swallow InterruptedException when a user ab...

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cmakebuilder-plugin
  Commit: c8d556f768520ba6459d3fc3568eac40a4e8a6b0
  
https://github.com/jenkinsci/cmakebuilder-plugin/commit/c8d556f768520ba6459d3fc3568eac40a4e8a6b0
  Author: 15knots 
  Date:   2015-06-20 (Sat, 20 Jun 2015)

  Changed paths:
M src/main/java/hudson/plugins/cmake/CmakeBuilder.java

  Log Message:
  ---
  do not swallow InterruptedException when a user aborts the build


  Commit: 71291c5e384963e77c157193b72570f18600b055
  
https://github.com/jenkinsci/cmakebuilder-plugin/commit/71291c5e384963e77c157193b72570f18600b055
  Author: 15knots 
  Date:   2015-06-20 (Sat, 20 Jun 2015)

  Changed paths:
M src/main/java/hudson/plugins/cmake/CmakeBuilder.java
M src/main/java/hudson/plugins/cmake/CmakeBuilderImpl.java
M src/main/java/hudson/plugins/cmake/CmakeLauncher.java
M src/test/java/hudson/plugins/cmake/FieldValidationTest.java
M src/test/java/hudson/plugins/cmake/FormRoundTripTest.java
M src/test/java/hudson/plugins/cmake/PathUtilTest.java

  Log Message:
  ---
  reformatted according to Jenkins Core Coding conventions (Sun coding
convention without tabs)


  Commit: 4d08f9eb8a0f6960176343e76dd2b9da6900a5eb
  
https://github.com/jenkinsci/cmakebuilder-plugin/commit/4d08f9eb8a0f6960176343e76dd2b9da6900a5eb
  Author: 15knots 
  Date:   2015-06-20 (Sat, 20 Jun 2015)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Require Jenkins 1.580.3 in order to have @Issue.


  Commit: a4d3d97886f08d8aae05f00d802b4ca0d08fcf29
  
https://github.com/jenkinsci/cmakebuilder-plugin/commit/a4d3d97886f08d8aae05f00d802b4ca0d08fcf29
  Author: 15knots 
  Date:   2015-06-20 (Sat, 20 Jun 2015)

  Changed paths:
M src/main/java/hudson/plugins/cmake/CmakeBuilder.java
R src/main/java/hudson/plugins/cmake/CmakeBuilderImpl.java
R src/main/java/hudson/plugins/cmake/CmakeLauncher.java
R src/test/java/hudson/plugins/cmake/PathUtilTest.java

  Log Message:
  ---
  streamlined code


  Commit: 0f12da989eb19406e6b96d954b59b001eb150e05
  
https://github.com/jenkinsci/cmakebuilder-plugin/commit/0f12da989eb19406e6b96d954b59b001eb150e05
  Author: 15knots 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
A src/test/java/hudson/plugins/cmake/JobBuildTest.java
A src/test/java/hudson/plugins/cmake/MultiFileSCM.java

  Log Message:
  ---
  added tests that actually run the builder


  Commit: 2a73c2cdde5babd3eb37bdd2f9230ec89575a71f
  
https://github.com/jenkinsci/cmakebuilder-plugin/commit/2a73c2cdde5babd3eb37bdd2f9230ec89575a71f
  Author: 15knots 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M src/test/java/hudson/plugins/cmake/FieldValidationTest.java
M src/test/java/hudson/plugins/cmake/FormRoundTripTest.java

  Log Message:
  ---
  fixed broken tests


  Commit: df128001b388ba7214fc90e0b6b52976c923c1b2
  
https://github.com/jenkinsci/cmakebuilder-plugin/commit/df128001b388ba7214fc90e0b6b52976c923c1b2
  Author: 15knots 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
A .settings/org.eclipse.jdt.core.prefs
A .settings/org.eclipse.jdt.ui.prefs

  Log Message:
  ---
  Formatting according to Jenkins Core Coding conventions (Sun coding
convention without tabs)


  Commit: a6e158ea5a932c46d506a703e6e0a72b4045d891
  
https://github.com/jenkinsci/cmakebuilder-plugin/commit/a6e158ea5a932c46d506a703e6e0a72b4045d891
  Author: 15knots 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M .classpath

  Log Message:
  ---
  Require Jenkins 1.580.3


Compare: 
https://github.com/jenkinsci/cmakebuilder-plugin/compare/12a795e28395...a6e158ea5a93

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jenkinsci/mesos-plugin] 894559: SUPERVISOR_LOCK.unlock() should be outside the loo...

2015-06-21 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/mesos-plugin
  Commit: 894559bd79916a3554c380884a38fd67be760d3b
  
https://github.com/jenkinsci/mesos-plugin/commit/894559bd79916a3554c380884a38fd67be760d3b
  Author: Jean-Christophe Sirot 
  Date:   2015-06-18 (Thu, 18 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/mesos/JenkinsScheduler.java

  Log Message:
  ---
  SUPERVISOR_LOCK.unlock() should be outside the loop to avoid 
IllegalMonitorStateException


  Commit: 1028d859fd0405b3505292e4931482090846a7a6
  
https://github.com/jenkinsci/mesos-plugin/commit/1028d859fd0405b3505292e4931482090846a7a6
  Author: Vinod Kone 
  Date:   2015-06-21 (Sun, 21 Jun 2015)

  Changed paths:
M src/main/java/org/jenkinsci/plugins/mesos/JenkinsScheduler.java

  Log Message:
  ---
  Merge pull request #128 from jcsirot/lock

Fixed SUPERVISOR_LOCK.unlock() bug when using multiple Mesos clouds.


Compare: 
https://github.com/jenkinsci/mesos-plugin/compare/e9c1b29210f5...1028d859fd04

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.