-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,37 +2,36 @@ Package: rJavaEnv | |
Title: Java Environments for R Projects | ||
Version: 0.0.1 | ||
Authors@R: | ||
c(person("Egor", "Kotov", , "[email protected]", role = c("aut", "cre", "cph"), | ||
comment = c(ORCID = "0000-0001-6690-5345"))) | ||
Description: Install specific version of Java runtime environment | ||
at the R project level. The goal of rJavaEnv is to manage multiple | ||
Java JDKs in R projects by automatingthe process of downloading, | ||
installing, and configuring Java environments on a per-project basis. | ||
This package is inspired by the renv <https://rstudio.github.io/renv/> | ||
package for managing R environments in R projects. You can request a | ||
specific Java Development Kit (JDK) in your project, | ||
and rJavaEnv will download and install the requested Java environment | ||
in a project-specific directory and set the PATH and JAVA_HOME | ||
for when you are using this project. Therefore, you can have different | ||
Java versions for different projects without contaminating your system | ||
with different Java versions. | ||
person("Egor", "Kotov", , "[email protected]", role = c("aut", "cre", "cph"), | ||
comment = c(ORCID = "0000-0001-6690-5345")) | ||
Description: Install specific version of Java runtime environment at the R | ||
project level. The goal of rJavaEnv is to manage multiple Java JDKs in | ||
R projects by automatingthe process of downloading, installing, and | ||
configuring Java environments on a per-project basis. This package is | ||
inspired by the renv <https://rstudio.github.io/renv/> package for | ||
managing R environments in R projects. You can request a specific Java | ||
Development Kit (JDK) in your project, and rJavaEnv will download and | ||
install the requested Java environment in a project-specific directory | ||
and set the PATH and JAVA_HOME for when you are using this project. | ||
Therefore, you can have different Java versions for different projects | ||
without contaminating your system with different Java versions. | ||
License: MIT + file LICENSE | ||
Suggests: | ||
knitr, | ||
rmarkdown, | ||
rJava, | ||
testthat (>= 3.0.0) | ||
Config/testthat/edition: 3 | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.1 | ||
URL: https://github.com/e-kotov/rJavaEnv, http://www.ekotov.pro/rJavaEnv/ | ||
BugReports: https://github.com/e-kotov/rJavaEnv/issues | ||
Imports: | ||
checkmate, | ||
cli, | ||
curl, | ||
jsonlite, | ||
utils | ||
URL: https://github.com/e-kotov/rJavaEnv, http://www.ekotov.pro/rJavaEnv/ | ||
Suggests: | ||
knitr, | ||
rJava, | ||
rmarkdown, | ||
testthat (>= 3.0.0) | ||
VignetteBuilder: | ||
knitr | ||
BugReports: https://github.com/e-kotov/rJavaEnv/issues | ||
Config/testthat/edition: 3 | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.1 |