X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/be671e455b11f50af965923b980977264a8d7364..92d6698f3c2d1c8109a9cf08f25da408c3a7b442:/sdk/R/install_deps.R diff --git a/sdk/R/install_deps.R b/sdk/R/install_deps.R index 5314c86e28..4e6c5c88f4 100644 --- a/sdk/R/install_deps.R +++ b/sdk/R/install_deps.R @@ -1,4 +1,8 @@ -options(repos=structure(c(CRAN="http://cran.wustl.edu/"))) +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + +options(repos=structure(c(CRAN="https://cloud.r-project.org/"))) if (!requireNamespace("devtools")) { install.packages("devtools") } @@ -11,5 +15,8 @@ if (!requireNamespace("knitr")) { if (!requireNamespace("markdown")) { install.packages("markdown") } +if (!requireNamespace("XML")) { + install.packages("XML") +} devtools::install_dev_deps()