-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path_pkgdown.yml
More file actions
137 lines (129 loc) · 3.99 KB
/
_pkgdown.yml
File metadata and controls
137 lines (129 loc) · 3.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
url: https://www.ekotov.pro/rJavaEnv/
template:
bootstrap: 5
bootswatch: flatly
includes:
in_header: |
<!-- counter.dev analytics -->
<script data-goatcounter="https://jukadipos.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
<!-- counter.dev analytics -->
<script src="https://cdn.counter.dev/script.js" data-id="7e3e8d31-9a84-48b0-a678-a00715236a90" data-utcoffset="1"></script>
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3578286,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
opengraph:
image:
src: man/figures/card.png
alt: "rJavaEnv: Java Environments for R Projects. Install and manage Java environments using R"
twitter:
creator: "@EgorKotov"
card: summary_large_image
authors:
Egor Kotov:
href: "https://www.ekotov.pro"
navbar:
structure:
left: [intro, reference, articles, tutorials, news]
right: [search, github, lightswitch]
components:
articles:
text: Articles
menu:
- text: "Getting Started"
- text: "Step-by-step Java Setup"
href: articles/rJavaEnv-step-by-step.html
- text: "Multiple Java with targets & callr"
href: articles/multiple-java-with-targets-callr.html
- text: "---"
- text: "About"
- text: "Why rJavaEnv?"
href: articles/why-rJavaEnv.html
- text: "---"
- text: "Advanced"
- text: "Install rJava from Source"
href: articles/install-rjava-from-source.html
- text: "Using rJavaEnv in Packages"
href: articles/for-developers.html
home:
title: 'rJavaEnv: `Java` Environments for R Projects'
description: 'Install and manage `Java` environments using R'
reference:
- title: "Quick Install"
desc: >
Just quickly install `Java` in the current project
contents:
- java_quick_install
- title: "Quick Set & Discovery"
desc: >
Quickly find available versions, check system for existing ones, and set `Java` in the current project
contents:
- use_java
- java_list_available
- java_find_system
- java_valid_versions
- title: "Ensure Required Java Version"
desc: >
Ensure a specific Java version is available and set
contents:
- java_ensure
- java_resolve
- title: "Scoped Java Environment"
desc: >
Temporarily set Java for the current scope (ideal for package developers)
contents:
- local_java_env
- with_java_env
- with_rjava_env
- title: "Java Validation"
desc: >
Check `Java` version and compatibility with currently set environment
contents:
- java_check_version_cmd
- java_check_version_rjava
- java_get_home
- java_check_compatibility
- title: "Fine-grained Control"
desc: >
Control every step of `Java` download, unpacking and installation
contents:
- java_download
- java_unpack
- java_install
- java_env_set
- java_env_unset
- java_build_env_set
- java_build_env_unset
- title: "Cache Management"
desc: >
Manage cached downloads, installations, and project-linked `Java` versions
contents:
- java_list
- java_list_distrib
- java_list_installed
- java_list_project
- java_clear
- java_clear_distrib
- java_clear_installed
- java_clear_project
- title: "Other commands"
contents:
- rje_consent
articles:
- title: "Getting Started"
contents:
- rJavaEnv-step-by-step
- multiple-java-with-targets-callr
- title: "About rJavaEnv"
contents:
- why-rJavaEnv
- title: "Advanced Topics"
contents:
- install-rjava-from-source
- for-developers