Skip to content

Commit

Permalink
Merge pull request #21 from jenkinsci/dependabot/maven/org.jenkins-ci…
Browse files Browse the repository at this point in the history
….plugins-plugin-4.87

Bump org.jenkins-ci.plugins:plugin from 4.66 to 4.87
  • Loading branch information
mrdailey99 authored Sep 11, 2024
2 parents e2e351f + 955a4eb commit 7a07b5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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>4.66</version>
<version>4.87</version>
<relativePath />
</parent>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/jenkins/plugins/ProvarAutomation.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7a07b5b

Please sign in to comment.