From 539f8c68028c99bda24ab88a10f1a3f236b5dac1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:25:32 +0000 Subject: [PATCH 1/3] Bump org.jenkins-ci.plugins:plugin from 4.66 to 4.87 Bumps [org.jenkins-ci.plugins:plugin](https://github.com/jenkinsci/plugin-pom) from 4.66 to 4.87. - [Release notes](https://github.com/jenkinsci/plugin-pom/releases) - [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.66...plugin-4.87) --- updated-dependencies: - dependency-name: org.jenkins-ci.plugins:plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e50fbdd..f6a70b1 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.jenkins-ci.plugins plugin - 4.66 + 4.87 From 55317f4d8576a1ec447f8e97ea76caeeb9a4c113 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:36:13 +0000 Subject: [PATCH 2/3] Bump org.jenkins-ci.plugins:plugin from 4.66 to 4.87 Bumps [org.jenkins-ci.plugins:plugin](https://github.com/jenkinsci/plugin-pom) from 4.66 to 4.87. - [Release notes](https://github.com/jenkinsci/plugin-pom/releases) - [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.66...plugin-4.87) --- updated-dependencies: - dependency-name: org.jenkins-ci.plugins:plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e50fbdd..f6a70b1 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.jenkins-ci.plugins plugin - 4.66 + 4.87 From b60812cef614e7663071a09eb3c9f6254bb5a565 Mon Sep 17 00:00:00 2001 From: Michael Dailey Date: Wed, 11 Sep 2024 06:42:11 -0500 Subject: [PATCH 3/3] Compiler warning for java property over env var reference --- src/main/java/io/jenkins/plugins/ProvarAutomation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/jenkins/plugins/ProvarAutomation.java b/src/main/java/io/jenkins/plugins/ProvarAutomation.java index 976ee10..950d339 100644 --- a/src/main/java/io/jenkins/plugins/ProvarAutomation.java +++ b/src/main/java/io/jenkins/plugins/ProvarAutomation.java @@ -480,7 +480,7 @@ public boolean configure(StaplerRequest req, JSONObject json) throws FormExcepti public static final String defaultTestPlan = "Regression"; public static final String defaultTestFolder = "All"; static String windowsLicensePath = "C:\\Users\\" + System.getProperty("user.name") + "\\Provar\\.licenses"; - static String unixLicensePath = System.getenv("HOME") + "/Provar/.licenses"; + static String unixLicensePath = System.getProperty("user.home") + "/Provar/.licenses"; static String osName = System.getProperty("os.name"); public static final String defaultLicensePath = osName.contains("Windows") ? windowsLicensePath : unixLicensePath; public static final SalesforceMetadataCacheSettings defaultSalesforceMetadataCacheSetting = SalesforceMetadataCacheSettings.Reuse;