[JIRA] (JENKINS-57237) ${HOME} in global configured data dir is ignored in pipeline dependencyCheckAnalyzer

2019-07-06 Thread steve.spring...@owasp.org (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Steve Springett closed an issue as Won't Do  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 No longer relevant with v5.0.0  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-57237  
 
 
  ${HOME} in global configured data dir is ignored in pipeline dependencyCheckAnalyzer   
 

  
 
 
 
 

 
Change By: 
 Steve Springett  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Won't Do  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.198997.155661008.3563.1562469900210%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-57237) ${HOME} in global configured data dir is ignored in pipeline dependencyCheckAnalyzer

2019-04-30 Thread m...@jochen-fuerbacher.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jochen A. Fürbacher updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-57237  
 
 
  ${HOME} in global configured data dir is ignored in pipeline dependencyCheckAnalyzer   
 

  
 
 
 
 

 
Change By: 
 Jochen A. Fürbacher  
 

  
 
 
 
 

 
 When you configure the field {{Global Data Directory}} in the global Jenkins configuration page to use the {{$\{HOME}}} environment variable, e.g. {{${HOME}/owasp-nvd}}, then the {{$ \ {HOME}}} variable gets referenced corectly in freestyle jobs. You see something like this in the build log:  {code :java }...[DependencyCheck]  -dataDirectory = /opt/jenkins/owasp-nvd...{code}  However, the {{$ \ {HOME}}} variable doesn't get referenced corectly in Pipeline jobs when using the {{dependencyCheckAnalyzer()}} step:{code :java }...[DependencyCheck]  -dataDirectory = /opt/jenkins/ws/CheckOWASP_DataDir.Pipeline/${HOME}/owasp-nvd...{code} *Note*: The fields for the dateDirectory are neither configured in the freestyle job nor in the pipeline job! Just in the global configuration page!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-57237) ${HOME} in global configured data dir is ignored in pipeline dependencyCheckAnalyzer

2019-04-30 Thread m...@jochen-fuerbacher.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jochen A. Fürbacher created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-57237  
 
 
  ${HOME} in global configured data dir is ignored in pipeline dependencyCheckAnalyzer   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 dependency-check-jenkins-plugin  
 
 
Created: 
 2019-04-30 07:41  
 
 
Environment: 
 Jenkins core: 2.164.2  Dependency Check Plugin: 4.0.2  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Jochen A. Fürbacher  
 

  
 
 
 
 

 
 When you configure the field Global Data Directory in the global Jenkins configuration page to use the ${HOME} environment variable, e.g. ${HOME}/owasp-nvd, then the ${HOME} variable gets referenced corectly in freestyle jobs. You see something like this in the build log: 

 

...
[DependencyCheck]  -dataDirectory = /opt/jenkins/owasp-nvd
...
 

 However, the ${HOME} variable doesn't get referenced corectly in Pipeline jobs when using the dependencyCheckAnalyzer() step: 

 

...
[DependencyCheck]  -dataDirectory = /opt/jenkins/ws/CheckOWASP_DataDir.Pipeline/${HOME}/owasp-nvd
...