Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit c9fc25b

Browse files
committed
Added copyright
1 parent 507bbd0 commit c9fc25b

File tree

7 files changed

+36
-1
lines changed

7 files changed

+36
-1
lines changed

src/main/java/com/mathworks/ci/tools/InstallationFailedException.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
package com.mathworks.ci.tools;
22

3+
/**
4+
* Copyright 2024, The MathWorks, Inc.
5+
*
6+
*/
7+
38
import java.io.IOException;
49

510
// Extend IOException so we can throw and stop the build if installation fails

src/main/java/com/mathworks/ci/tools/MatlabInstallable.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
package com.mathworks.ci.tools;
2+
/**
3+
* Copyright 2024, The MathWorks, Inc.
4+
*
5+
*/
6+
27

38
import com.mathworks.ci.Message;
49
import hudson.FilePath;

src/main/java/com/mathworks/ci/tools/MatlabInstaller.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
package com.mathworks.ci.tools;
2+
/**
3+
* Copyright 2024, The MathWorks, Inc.
4+
*
5+
*/
6+
27

38
import com.mathworks.ci.MatlabInstallation;
49
import com.mathworks.ci.Message;
@@ -16,8 +21,8 @@
1621
import hudson.tools.ToolInstallation;
1722
import hudson.tools.ToolInstallerDescriptor;
1823
import hudson.util.ArgumentListBuilder;
19-
2024
import hudson.util.FormValidation;
25+
2126
import java.io.IOException;
2227
import java.net.URL;
2328
import java.nio.charset.StandardCharsets;

src/main/java/com/mathworks/ci/utilities/GetSystemProperties.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
package com.mathworks.ci.utilities;
2+
/**
3+
* Copyright 2024, The MathWorks, Inc.
4+
*
5+
*/
6+
27

38
import jenkins.security.MasterToSlaveCallable;
49

src/test/java/unit/com/mathworks/ci/tools/MatlabInstallableUnitTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
import static org.junit.Assert.assertEquals;
44

55
import java.io.File;
6+
/**
7+
* Copyright 2024, The MathWorks, Inc.
8+
*
9+
*/
10+
611

712
import org.junit.Test;
813

src/test/java/unit/com/mathworks/ci/tools/MatlabInstallerUnitTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
package com.mathworks.ci.tools;
2+
/**
3+
* Copyright 2024, The MathWorks, Inc.
4+
*
5+
*/
6+
27

38
import static org.junit.Assert.*;
49
import static org.mockito.Mockito.*;

src/test/java/unit/com/mathworks/ci/utilities/GetSystemPropertiesUnitTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
package com.mathworks.ci.utilities;
2+
/**
3+
* Copyright 2024, The MathWorks, Inc.
4+
*
5+
*/
6+
27

38
import static org.junit.Assert.assertArrayEquals;
49
import static org.mockito.Mockito.doReturn;

0 commit comments

Comments
 (0)