From 327b23868b62f568d9ecfa4f3527ac873d744aaa Mon Sep 17 00:00:00 2001 From: Martin Damovsky Date: Wed, 22 Feb 2017 23:08:54 +0100 Subject: [maven-release-plugin] prepare release bitbucket-pullrequest-builder-1.4.22 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a0fdd11..1af4f41 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ bitbucket-pullrequest-builder Bitbucket Pullrequest Builder Plugin - 1.4.22-SNAPSHOT + 1.4.22 This Jenkins plugin builds pull requests from Bitbucket.org and will report the test results. hpi https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+pullrequest+builder+plugin @@ -17,7 +17,7 @@ scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git - HEAD + bitbucket-pullrequest-builder-1.4.22 -- cgit v1.2.3 From 21956bd0fa02225fe11c0da632d5f0ca5e247648 Mon Sep 17 00:00:00 2001 From: Martin Damovsky Date: Wed, 22 Feb 2017 23:09:03 +0100 Subject: [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1af4f41..4189a03 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ bitbucket-pullrequest-builder Bitbucket Pullrequest Builder Plugin - 1.4.22 + 1.4.23-SNAPSHOT This Jenkins plugin builds pull requests from Bitbucket.org and will report the test results. hpi https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+pullrequest+builder+plugin @@ -17,7 +17,7 @@ scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git - bitbucket-pullrequest-builder-1.4.22 + HEAD -- cgit v1.2.3 From 417b3cc37517969f8a7c276e5d6155b9275e17dc Mon Sep 17 00:00:00 2001 From: Martin Damovsky Date: Wed, 22 Feb 2017 23:16:12 +0100 Subject: [maven-release-plugin] prepare release bitbucket-pullrequest-builder-1.4.23 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4189a03..c23cc00 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ bitbucket-pullrequest-builder Bitbucket Pullrequest Builder Plugin - 1.4.23-SNAPSHOT + 1.4.23 This Jenkins plugin builds pull requests from Bitbucket.org and will report the test results. hpi https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+pullrequest+builder+plugin @@ -17,7 +17,7 @@ scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git - HEAD + bitbucket-pullrequest-builder-1.4.23 -- cgit v1.2.3 From 3dfdbf384b4d753934a72f5310893b47a33d0598 Mon Sep 17 00:00:00 2001 From: Martin Damovsky Date: Wed, 22 Feb 2017 23:16:20 +0100 Subject: [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c23cc00..0ee6ba5 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ bitbucket-pullrequest-builder Bitbucket Pullrequest Builder Plugin - 1.4.23 + 1.4.24-SNAPSHOT This Jenkins plugin builds pull requests from Bitbucket.org and will report the test results. hpi https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+pullrequest+builder+plugin @@ -17,7 +17,7 @@ scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git - bitbucket-pullrequest-builder-1.4.23 + HEAD -- cgit v1.2.3 From 524bafb1cfa0d3672968f832871bf1b4b1f6f58e Mon Sep 17 00:00:00 2001 From: Martin Damovsky Date: Thu, 23 Feb 2017 15:14:35 +0100 Subject: fixed bug in JSON Parsing for Pullrequest comments --- .../bitbucketpullrequestbuilder/bitbucket/Pullrequest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/Pullrequest.java b/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/Pullrequest.java index 5cf1fa7..7949d5a 100644 --- a/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/Pullrequest.java +++ b/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/Pullrequest.java @@ -217,12 +217,10 @@ public class Pullrequest { return getId() != null ? getId().hashCode() : 0; } - @JsonProperty("comment_id") public Integer getId() { return id; } - @JsonProperty("comment_id") public void setId(Integer id) { this.id = id; } -- cgit v1.2.3 From b4fcb84b8f587aa42d443b4cf4ca02953b80c494 Mon Sep 17 00:00:00 2001 From: Martin Damovsky Date: Thu, 23 Feb 2017 15:16:57 +0100 Subject: [maven-release-plugin] prepare release bitbucket-pullrequest-builder-1.4.24 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0ee6ba5..57d8f79 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ bitbucket-pullrequest-builder Bitbucket Pullrequest Builder Plugin - 1.4.24-SNAPSHOT + 1.4.24 This Jenkins plugin builds pull requests from Bitbucket.org and will report the test results. hpi https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+pullrequest+builder+plugin @@ -17,7 +17,7 @@ scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git - HEAD + bitbucket-pullrequest-builder-1.4.24 -- cgit v1.2.3 From f4093a80a1addfa60dccda8684a09ca801062293 Mon Sep 17 00:00:00 2001 From: Martin Damovsky Date: Thu, 23 Feb 2017 15:17:05 +0100 Subject: [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 57d8f79..95d6524 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ bitbucket-pullrequest-builder Bitbucket Pullrequest Builder Plugin - 1.4.24 + 1.4.25-SNAPSHOT This Jenkins plugin builds pull requests from Bitbucket.org and will report the test results. hpi https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+pullrequest+builder+plugin @@ -17,7 +17,7 @@ scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git - bitbucket-pullrequest-builder-1.4.24 + HEAD -- cgit v1.2.3