-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdownload.html
318 lines (291 loc) · 11.5 KB
/
download.html
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>BeanShell - Downloads</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="css/my_styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<aside>
<nav>
<ul class="menu">
<li><a href="home.html">Home</a>
</li>
<li><a href="intro.html">Intro</a>
</li>
<li> <a href="docs.html">Docs</a>
</li>
<li> <a href="download.html">Download</a>
</li>
<li> <a href="contact.html">Contact</a>
</li>
<li> <a href="https://github.com/beanshell/beanshell/wiki">
Community Wiki</a>
</li>
<li> <a href="developer.html">Developer</a>
</li>
<li> <a href="license.html">License</a>
</li>
<li> <a href="beany.html">Beany</a>
</li>
<li> <a href="http://www.amazon.com/exec/obidos/ASIN/0596002858">
<img alt="Learning Java" src="images/lj2.png" width="100px"> <br>
<span class="small"> Check out my book:<br>
Learning Java,<br>
O'Reilly & Associates </span>
</a>
</li>
</ul>
</nav>
</aside>
<article>
<section>
<h1>Downloads</h1>
<img align="left" src="images/beanytreasure1.jpg">
<h2>Downloads</h2>
<br clear="left">
<p>New releases will happen through <a href="https://github.com/beanshell/beanshell/releases">GitHub</a>.
</p>
</section>
<section>
<h2>Legacy Release</h2>
<p>Old releases are kept in <a
href="https://sourceforge.net/projects/beanshell/files/">SOURCE<b>FORGE</b></a>.
</p>
<div class="large">
<table border="2" width="100%">
<tr>
<td bgcolor="#cceecc">
bsh
</td>
<td bgcolor="#cceecc">
All Files (~280k) - Latest, beta but stable, release.
This jar contains all of the packages listed below.
</td>
<td bgcolor="#cceecc">
<a href="files/bsh-2.0b4.jar">bsh-2.0b4.jar</a>
</td>
</tr>
<tr>
<td>
bsh-core
</td>
<td>
Core interpreter only (~143k) - The minimal footprint, interpreter only.
</td>
<td>
<a href="files/bsh-core-2.0b4.jar">bsh-core-2.0b4.jar</a>
</td>
</tr>
<tr>
<td>
bsh-classgen
</td>
<td>
BeanShell class generation (~31k) - Adds the ability for BeanShell to script
full Java classes and interpret standard Java code.
</td>
<td>
<a href="files/bsh-classgen-2.0b4.jar">bsh-classgen-2.0b4.jar</a>
</td>
</tr>
<tr>
<td>
bsh-commands
</td>
<td>
Shell commands (~20k) - adds useful beanshell shell commands to the
core package.
</td>
<td>
<a href="files/bsh-commands-2.0b4.jar">bsh-commands-2.0b4.jar</a>
</td>
</tr>
<tr>
<td>
bsh-util
</td>
<td>
BeanShell utilities (~42k) - Adds misc. utilities used by other packages and
commands.
</td>
<td>
<a href="files/bsh-util-2.0b4.jar">bsh-util-2.0b4.jar</a>
</td>
</tr>
<tr>
<td>
bsh-classpath
</td>
<td>
BeanShell classpath management (~16k) - Adds class reloading and classpath
capabilities to the core package. Requires Java 1.2 or greater to activate.
</td>
<td>
<a href="files/bsh-classpath-2.0b4.jar">bsh-classpath-2.0b4.jar</a>
</td>
</tr>
<tr>
<td>
bsh-reflect
</td>
<td>
BeanShell reflective accessibility (~1k) - Adds the ability for BeanShell to
access private/protected fields, methods, and non-public classes (subject to
any Java runtime security). Requires Java 1.2 or greater to activate.
</td>
<td>
<a href="files/bsh-reflect-2.0b4.jar">bsh-reflect-2.0b4.jar</a>
</td>
</tr>
<tr>
<td>
bsh-bsf
</td>
<td>
Apache/IBM Bean Scripting Framework (BSF) Adapter for BeanShell (~2k) -
This is the necessary adapter for BeanShell to be used with BSF.
</td>
<td>
<a href="files/bsh-bsf-2.0b4.jar">bsh-bsf-2.0b4.jar</a>
</td>
</tr>
</table>
</div>
<p></p>
<h3>BeanShell Web Application Test Servlet</h3>
<p>Please see the
<a href="bshservlet.html">BeanShell Web Application Test Servlet</a> page to
download the example WAR. Two versions of the WAR are provided, one containing
the BeanShell JAR and one relying on the container for BeanShell deployment.
</p>
</section>
<section>
<h2>Previous Releases</h2>
<div class="large">
<table border="2" width="100%">
<tr>
<td>
BeanShell - 2.0b2</td>
<td>
All files
</td>
<td><a href="files/bsh-2.0b2.jar">bsh-2.0b2.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 2.0b1</td>
<td>
All files
</td>
<td><a href="files/bsh-2.0b1.jar">bsh-2.0b1.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 2.0b1</td>
<td>
All files
</td>
<td><a href="files/bsh-2.0b1.jar">bsh-2.0b1.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.3.0</td>
<td>
All files
</td>
<td><a href="files/bsh-1.3.0.jar">bsh-1.3.0.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.3b1</td>
<td>
All files
</td>
<td><a href="files/bsh-1.3b1.jar">bsh-1.3b1.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.2b8</td>
<td>
All files
</td>
<td><a href="files/bsh-1.2b8.jar">bsh-1.2b8.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.2b7</td>
<td>
All files
</td>
<td><a href="files/bsh-1.2b7.jar">bsh-1.2b7.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.2b6</td>
<td>
All files
</td>
<td><a href="files/bsh-1.2b6.jar">bsh-1.2b6.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.2b5</td>
<td>
All files
</td>
<td><a href="files/bsh-1.2b5.jar">bsh-1.2b5.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.2b4</td>
<td>
All files
</td>
<td><a href="files/bsh-1.2b4.jar">bsh-1.2b4.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.2b3</td>
<td>
All files
</td>
<td><a href="files/bsh-1.2b3.jar">bsh-1.2b3.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.2b2</td>
<td>
All files
</td>
<td><a href="files/bsh-1.2b2.jar">bsh-1.2b2.jar</a></td>
</tr>
<tr>
<td>
BeanShell - 1.2b1</td>
<td>
All files
</td>
<td><a href="files/bsh-1.2b1.jar">bsh-1.2b1.jar</a></td>
</tr>
</table>
<p></p>
</div>
<p>
Please see the user manual or
<a href="manual/bshmanual.html">quick start</a> guide for information on
running BeanShell.
</p>
<p>
The BeanShell source code and developer info can be found in the
<a href="developer.html">Developer's Area</a>
</p>
<p>
Don't forget to subscribe to the <a href="contact.html">announcements list</a>
for news about new releases.
</p>
</section>
</article>
</body>
</html>