Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Aug 9, 2022
1 parent 7fcdc7c commit e724eb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.43.1</version>
<version>4.45</version>
<relativePath />
</parent>

Expand All @@ -28,7 +28,7 @@
<properties>
<changelist>999999-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/bitbucket-branch-source-plugin</gitHubRepo>
<jenkins.version>2.303.3</jenkins.version>
<jenkins.version>2.332.4</jenkins.version>
<hpi.compatibleSinceVersion>2.0</hpi.compatibleSinceVersion>
</properties>

Expand All @@ -52,7 +52,7 @@
</developers>

<scm>
<connection>scm:git:git://github.com/${gitHubRepo}.git</connection>
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
Expand All @@ -62,8 +62,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.303.x</artifactId>
<version>1500.ve4d05cd32975</version>
<artifactId>bom-2.332.x</artifactId>
<version>1577.v63609d9cb_5dc</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down Expand Up @@ -113,7 +113,6 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>handy-uri-templates-2-api</artifactId>
<version>2.1.8-22.v77d5b_75e6953</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import hudson.util.ListBoxModel;
import io.jenkins.plugins.casc.ConfigurationAsCode;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.Arrays;
import java.util.Collections;
Expand Down Expand Up @@ -66,7 +67,7 @@ public class BitbucketEndpointConfigurationTest {
public static JenkinsRule j = new JenkinsRule();

@Before
public void cleanUp() {
public void cleanUp() throws IOException {
BitbucketEndpointConfiguration.get().setEndpoints(null);
new XmlFile(new File(Jenkins.get().getRootDir(), BitbucketEndpointConfiguration.get().getId() + ".xml"))
.delete();
Expand Down

0 comments on commit e724eb4

Please sign in to comment.