Skip to content

Commit

Permalink
Require 2.346.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gounthar committed Jan 29, 2025
1 parent 61d611a commit f5ce2be
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
22 changes: 17 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.57</version>
<version>4.51</version>
<relativePath />
</parent>

<properties>
<jenkins.version>2.60.3</jenkins.version>
<java.level>8</java.level>
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
<jenkins.baseline>2.346</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
</properties>

<artifactId>vstestrunner</artifactId>
Expand All @@ -18,7 +20,7 @@
<url>http://wiki.jenkins-ci.org/display/JENKINS/VsTestRunner+Plugin</url>

<scm>
<connection>scm:git:ssh://github.com/jenkinsci/vstestrunner-plugin.git</connection>
<connection>scm:git:https://github.com/jenkinsci/vstestrunner-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/jenkinsci/vstestrunner-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/vstestrunner-plugin.git</url>
<tag>HEAD</tag>
Expand All @@ -42,12 +44,22 @@
<distribution>repo</distribution>
</license>
</licenses>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-${jenkins.baseline}.x</artifactId>
<version>1763.v092b_8980a_f5e</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>structs</artifactId>
<version>1.17</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.jenkinsci.plugins.vstest_runner;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.Charset;
Expand Down

0 comments on commit f5ce2be

Please sign in to comment.