Skip to content

Commit

Permalink
Merge pull request #1055 from daspilker/JENKINS-45512
Browse files Browse the repository at this point in the history
updated documentation to avoid undesired libraries on the test classpath
  • Loading branch information
daspilker committed Sep 7, 2017
2 parents 655f9f1 + 99bf83c commit b3fe684
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/Home.md
Expand Up @@ -41,6 +41,8 @@ Browse the Jenkins issue tracker to see any [open issues](https://issues.jenkins
* Fixed documentation for the
[Throttle Concurrent Builds Plugin](https://wiki.jenkins-ci.org/display/JENKINS/Throttle+Concurrent+Builds+Plugin)
([#1042](https://github.com/jenkinsci/job-dsl-plugin/pull/1042))
* Updated documentation to avoid undesired libraries on the test classpath
([JENKINS-45512](https://issues.jenkins-ci.org/browse/JENKINS-45512))
* Changed visibility of a method in `JenkinsJobManagement`
([JENKINS-45921](https://issues.jenkins-ci.org/browse/JENKINS-45921))
* Provide better error message when job name ends with slash
Expand Down
6 changes: 6 additions & 0 deletions docs/Testing-DSL-Scripts.md
Expand Up @@ -37,6 +37,12 @@ when running the DSL scripts, e.g. for testing [[extensions|Extending the DSL]]

configurations {
testPlugins {}

// see JENKINS-45512
testCompile {
exclude group: 'xalan'
exclude group: 'xerces'
}
}

dependencies {
Expand Down

0 comments on commit b3fe684

Please sign in to comment.