Something wrong with splats in my previous commit...backing out until I figure this...
[jruby.git] / samples / jirb.jnlp
blob25af9df356c544c0a74f70fcabccf75a2177953e
1 <?xml version="1.0" encoding="UTF-8"?>
2 <jnlp spec="1.0+"
3       <!-- NOTE: Adjust codebase to your location, and make sure
4            jruby-complete.jar is in the lib directory, relative to
5            the specified codebase. The jruby-complete.jar is
6            typically built via 'ant jar-complete'. -->
7       codebase="file:..">
8     <information>
9         <title>JRuby IRB Console</title>
10         <vendor>The JRuby Team</vendor>
11         <description>Sample WebStart Application with JRuby</description>
12         <description kind="short">JRuby IRB Console Sample</description>
13         <homepage href="http://jruby.codehaus.org/"/>
14     </information>
15     <resources>
16         <j2se version="1.5+"/>
17         <jar href="lib/jruby-complete.jar" download="eager"/>
18     </resources>
19     <application-desc main-class="org.jruby.demo.IRBConsole">
20     </application-desc>
21 </jnlp>