Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 9 additions & 52 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.57</version>
<version>3.4</version>
<relativePath />
</parent>
<artifactId>matlab</artifactId>
Expand All @@ -20,7 +20,7 @@
</developers>

<properties>
<jenkins.version>2.164.3</jenkins.version>
<jenkins.version>2.7.3</jenkins.version>
<java.level>8</java.level>
</properties>

Expand Down Expand Up @@ -52,57 +52,14 @@
<url>http://github.com/jenkinsci/matlab-plugin</url>
<tag>HEAD</tag>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.164.x</artifactId>
<version>4</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>

<!-- Pipeline Step dependencies -->

<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>matrix-project</artifactId>
</dependency>

<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-step-api</artifactId>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-api</artifactId>
</dependency>

<!-- Jenkins workflow test dependencies -->

<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-basic-steps</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-cps</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-durable-task-step</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-job</artifactId>
<scope>test</scope>
</dependency>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.jenkins-ci.plugins/matrix-project -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>matrix-project</artifactId>
<version>1.14</version>
</dependency>
</dependencies>

<build>
Expand Down
82 changes: 0 additions & 82 deletions src/main/java/com/mathworks/ci/MatlabStepExecution.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private EnvVars getEnv() {
return this.env;
}


@Symbol("RunMatlabCommand")
@Extension
public static class RunMatlabCommandDescriptor extends BuildStepDescriptor<Builder> {

Expand Down
58 changes: 0 additions & 58 deletions src/main/java/com/mathworks/ci/RunMatlabCommandStep.java

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/java/com/mathworks/ci/RunMatlabTestsBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ protected Object readResolve() {
}



@Symbol("RunMatlabTests")
@Extension
public static class RunMatlabTestsDescriptor extends BuildStepDescriptor<Builder> {

Expand Down
Loading