The BioUno community is pleased to announce the release of the R Plug-in 0.4 [1].
This release includes:
* pull request #4: Add Jenkins Pipeline compatibility (thanks to @EmteZogaf!)
* Jenkins parent version bumped up from 1.580.1 to 2.11
* Added a dependency to workflow-durable-task-step plug-in
This release is compatible with the Pipeline plug-in, so now you can use pipeline jobs, and invoke the R plug-in with a script such as:
```
node {
rscript '''
a <- c(1,2,3,4)
plot(a)
'''
}
```
[1]
https://wiki.jenkins-ci.org/display/JENKINS/R+Plugin