Skip to content

Commit e724eb4

Browse files
authored
1 parent 7fcdc7c commit e724eb4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
8-
<version>4.43.1</version>
8+
<version>4.45</version>
99
<relativePath />
1010
</parent>
1111

@@ -28,7 +28,7 @@
2828
<properties>
2929
<changelist>999999-SNAPSHOT</changelist>
3030
<gitHubRepo>jenkinsci/bitbucket-branch-source-plugin</gitHubRepo>
31-
<jenkins.version>2.303.3</jenkins.version>
31+
<jenkins.version>2.332.4</jenkins.version>
3232
<hpi.compatibleSinceVersion>2.0</hpi.compatibleSinceVersion>
3333
</properties>
3434

@@ -52,7 +52,7 @@
5252
</developers>
5353

5454
<scm>
55-
<connection>scm:git:git://github.com/${gitHubRepo}.git</connection>
55+
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
5656
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection>
5757
<url>https://github.com/${gitHubRepo}</url>
5858
<tag>${scmTag}</tag>
@@ -62,8 +62,8 @@
6262
<dependencies>
6363
<dependency>
6464
<groupId>io.jenkins.tools.bom</groupId>
65-
<artifactId>bom-2.303.x</artifactId>
66-
<version>1500.ve4d05cd32975</version>
65+
<artifactId>bom-2.332.x</artifactId>
66+
<version>1577.v63609d9cb_5dc</version>
6767
<scope>import</scope>
6868
<type>pom</type>
6969
</dependency>
@@ -113,7 +113,6 @@
113113
<dependency>
114114
<groupId>org.jenkins-ci.plugins</groupId>
115115
<artifactId>handy-uri-templates-2-api</artifactId>
116-
<version>2.1.8-22.v77d5b_75e6953</version>
117116
</dependency>
118117
<dependency>
119118
<groupId>org.mockito</groupId>

src/test/java/com/cloudbees/jenkins/plugins/bitbucket/endpoints/BitbucketEndpointConfigurationTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
import hudson.util.ListBoxModel;
4040
import io.jenkins.plugins.casc.ConfigurationAsCode;
4141
import java.io.File;
42+
import java.io.IOException;
4243
import java.net.URL;
4344
import java.util.Arrays;
4445
import java.util.Collections;
@@ -66,7 +67,7 @@ public class BitbucketEndpointConfigurationTest {
6667
public static JenkinsRule j = new JenkinsRule();
6768

6869
@Before
69-
public void cleanUp() {
70+
public void cleanUp() throws IOException {
7071
BitbucketEndpointConfiguration.get().setEndpoints(null);
7172
new XmlFile(new File(Jenkins.get().getRootDir(), BitbucketEndpointConfiguration.get().getId() + ".xml"))
7273
.delete();

0 commit comments

Comments
 (0)