jnlp 0.0.5.4 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,29 @@
1
+ require 'sinatra/base'
2
+
3
+ module Jnlp #:nodoc:
4
+
5
+ class MavenJnlpServer < Sinatra::Base
6
+ set :sessions, true
7
+ set :foo, 'bar'
8
+
9
+ get '/' do
10
+ 'Hello world!'
11
+ end
12
+ end
13
+ end
14
+
15
+ require 'sinatra'
16
+
17
+ class MavenJnlpServer < Sinatra::Base
18
+ ROOT = File.expand_path(File.dirname(__FILE__)) unless defined?(ROOT)
19
+
20
+ set :static, true
21
+ set :public, ROOT + '/public'
22
+ set :views, ROOT + '/views'
23
+
24
+ get('/') { erb :index }
25
+ post('/save') { erb :save }
26
+
27
+ get('/*.html') { erb params[:splat].first.to_sym }
28
+ end
29
+
@@ -1,9 +1,3 @@
1
- # :main: Jnlp::Jnlp
2
- # :title: Jnlp::Jnlp RDoc
3
- #
4
- # to regenerate and display this rdoc:
5
- # rdoc -U -SN jnlp.rb otrunk.rb ; open doc/index.html
6
- #
7
1
  require 'open-uri'
8
2
  require 'hpricot'
9
3
  require 'fileutils'
@@ -85,8 +79,6 @@ end
85
79
  module Jnlp #:nodoc:
86
80
  #
87
81
  #
88
- require "#{File.expand_path(File.dirname(__FILE__))}/jnlp.rb"
89
- #
90
82
  # Jnlp::Otrunk is a subclass of Jnlp::Jnlp that adds SAIL-Otrunk[https://confluence.concord.org/display/CSP/OTrunk]
91
83
  # specific methods for execution.of the jnlp locally without
92
84
  # using Java Web Start.
@@ -1,5 +1,5 @@
1
1
  module Jnlp #:nodoc:
2
- VERSION = '0.0.5.4'
2
+ VERSION = '0.6.1'
3
3
  #
4
4
  # Let's see if this patch:
5
5
  #
@@ -1,6 +1,6 @@
1
1
  require File.join(File.dirname(__FILE__), 'spec_helper')
2
2
 
3
- describe Jnlp do
3
+ describe 'Jnlp with certificate versions' do
4
4
  before(:all) do
5
5
  @jnlp_with_certficate_versions_path = File.join(File.dirname(__FILE__), 'fixtures', 'all-otrunk-snapshot-0.1.0-20090624.030355.jnlp')
6
6
  @jnlp_with_certficate_versions = Jnlp::Jnlp.new(@jnlp_with_certficate_versions_path)
@@ -0,0 +1,48 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ describe 'Jnlp with specific os/arch/j2se' do
4
+ before(:all) do
5
+ @jnlp_with_specific_os_arch_j2ses_path = File.join(File.dirname(__FILE__), 'fixtures', 'all-otrunk-snapshot-0.1.0-20100211.193744.jnlp')
6
+ @jnlp_with_specific_os_arch_j2ses = Jnlp::Jnlp.new(@jnlp_with_specific_os_arch_j2ses_path)
7
+ end
8
+
9
+ it "should be named all-otrunk-snapshot-0.1.0-20100211.193744.jnlp" do
10
+ @jnlp_with_specific_os_arch_j2ses.name.should == 'all-otrunk-snapshot-0.1.0-20100211.193744.jnlp'
11
+ end
12
+
13
+ it "should have three j2ses" do
14
+ @jnlp_with_specific_os_arch_j2ses.j2ses.length.should == 3
15
+ end
16
+
17
+ it "should have an j2se_version attribute with the value '1.5+'" do
18
+ @jnlp_with_specific_os_arch_j2ses.j2se_version.should == '1.5+'
19
+ end
20
+
21
+ it "should have a j2se_version attribute with the value nil if the os: mac_os_x is specified and arch is not" do
22
+ @jnlp_with_specific_os_arch_j2ses.j2se_version('mac_os_x').should == nil
23
+ end
24
+
25
+ it "should have a j2se_version attribute with the value '1.5' if the os: 'mac_os_x' and arch: 'x86_64' are specified" do
26
+ @jnlp_with_specific_os_arch_j2ses.j2se_version('mac_os_x', 'x86_64').should == '1.5'
27
+ end
28
+
29
+ it "should have a j2se_version attribute with the value '1.5' if the os: 'mac_os_x' and arch: 'x86_64' are specified" do
30
+ @jnlp_with_specific_os_arch_j2ses.j2se_version('mac_os_x', 'x86_64').should == '1.5'
31
+ end
32
+
33
+ it "should have a j2se_version attribute with the value '1.5' if the os: 'mac_os_x' and arch: 'ppc_i386' are specified" do
34
+ @jnlp_with_specific_os_arch_j2ses.j2se_version('mac_os_x', 'ppc_i386').should == '1.5'
35
+ end
36
+
37
+ it "should have a java_vm_args attribute with the value '-d32' if the os: 'mac_os_x' and arch: 'x86_64' are specified" do
38
+ @jnlp_with_specific_os_arch_j2ses.java_vm_args('mac_os_x', 'x86_64').should == '-d32'
39
+ end
40
+
41
+ it "should have a java_vm_args attribute with the value nil if the os: 'mac_os_x' is specified and arch is not" do
42
+ @jnlp_with_specific_os_arch_j2ses.java_vm_args('mac_os_x').should == nil
43
+ end
44
+
45
+ it "should return nil in response to the java_vm_args method if the os: 'mac_os_x' and arch: 'ppc_i386' are specified" do
46
+ @jnlp_with_specific_os_arch_j2ses.java_vm_args('mac_os_x', 'ppc_i386').should == nil
47
+ end
48
+ end
@@ -1,6 +1,6 @@
1
1
  require File.join(File.dirname(__FILE__), 'spec_helper')
2
2
 
3
- describe Jnlp do
3
+ describe 'Jnlp without versioned jars' do
4
4
  before(:all) do
5
5
  @first_jnlp_path = File.join(File.dirname(__FILE__), 'fixtures', 'jnlp_without_versioned_jars.jnlp')
6
6
  @gem_dir = File.expand_path(File.dirname(__FILE__))
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jnlp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5.4
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 6
8
+ - 1
9
+ version: 0.6.1
5
10
  platform: ruby
6
11
  authors:
7
12
  - Stephen Bannasch
@@ -14,24 +19,46 @@ default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: hpricot
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
25
  - - "="
22
26
  - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ - 6
30
+ - 164
23
31
  version: 0.6.164
24
- version:
32
+ type: :runtime
33
+ version_requirements: *id001
25
34
  - !ruby/object:Gem::Dependency
26
- name: hoe
35
+ name: rspec
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 1
43
+ - 3
44
+ - 0
45
+ version: 1.3.0
27
46
  type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
47
+ version_requirements: *id002
48
+ - !ruby/object:Gem::Dependency
49
+ name: ci_reporter
50
+ prerelease: false
51
+ requirement: &id003 !ruby/object:Gem::Requirement
30
52
  requirements:
31
53
  - - ">="
32
54
  - !ruby/object:Gem::Version
33
- version: 2.4.0
34
- version:
55
+ segments:
56
+ - 1
57
+ - 6
58
+ - 0
59
+ version: 1.6.0
60
+ type: :development
61
+ version_requirements: *id003
35
62
  description: For manipulation of Java Web Start Jnlps and the resources they reference.
36
63
  email: stephen.bannasch@gmail.com
37
64
  executables: []
@@ -41,54 +68,54 @@ extensions: []
41
68
  extra_rdoc_files:
42
69
  - History.txt
43
70
  - License.txt
44
- - Manifest.txt
45
- - README.txt
71
+ - README.rdoc
46
72
  files:
47
- - History.txt
48
- - License.txt
49
- - Manifest.txt
50
- - README.txt
51
- - Rakefile
52
- - lib/jnlp.rb
53
- - lib/jnlp/version.rb
54
73
  - lib/jnlp/jnlp.rb
55
- - lib/jnlp/otrunk.rb
56
74
  - lib/jnlp/maven_jnlp.rb
75
+ - lib/jnlp/maven_jnlp_server.rb
76
+ - lib/jnlp/otrunk.rb
77
+ - lib/jnlp/version.rb
78
+ - lib/jnlp.rb
57
79
  - spec/jnlp_spec.rb
58
80
  - spec/jnlp_with_certficate_versions_spec.rb
81
+ - spec/jnlp_with_specific_os_arch_j2ses_spec.rb
59
82
  - spec/jnlp_without_versioned_jars_spec.rb
60
83
  - spec/spec_helper.rb
61
- - spec/fixtures/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp
62
- - spec/fixtures/all-otrunk-snapshot-CURRENT_VERSION.txt
63
- - spec/fixtures/all-otrunk-snapshot-0.1.0-20091221.214313.jnlp
64
- - spec/fixtures/jnlp_without_versioned_jars.jnlp
65
- - spec/fixtures/maven-jnlp.html
84
+ - History.txt
85
+ - License.txt
86
+ - README.rdoc
87
+ - Rakefile
88
+ - jnlp.gemspec
66
89
  has_rdoc: true
67
- homepage: http://rubywebstart.rubyforge.org/jnlp/rdoc/
90
+ homepage: http://rubywebstart.rubyforge.org/jnlp/rdoc
68
91
  licenses: []
69
92
 
70
93
  post_install_message:
71
94
  rdoc_options:
72
95
  - --main
73
- - README.txt
96
+ - README.rdoc
74
97
  require_paths:
75
98
  - lib
76
99
  required_ruby_version: !ruby/object:Gem::Requirement
77
100
  requirements:
78
101
  - - ">="
79
102
  - !ruby/object:Gem::Version
103
+ segments:
104
+ - 0
80
105
  version: "0"
81
- version:
82
106
  required_rubygems_version: !ruby/object:Gem::Requirement
83
107
  requirements:
84
108
  - - ">="
85
109
  - !ruby/object:Gem::Version
86
- version: "0"
87
- version:
110
+ segments:
111
+ - 1
112
+ - 3
113
+ - 2
114
+ version: 1.3.2
88
115
  requirements: []
89
116
 
90
117
  rubyforge_project: rubywebstart
91
- rubygems_version: 1.3.5
118
+ rubygems_version: 1.3.6
92
119
  signing_key:
93
120
  specification_version: 3
94
121
  summary: Ruby tools for working with Java Web Start JNLPs.
@@ -1,19 +0,0 @@
1
- History.txt
2
- License.txt
3
- Manifest.txt
4
- README.txt
5
- Rakefile
6
- lib/jnlp.rb
7
- lib/jnlp/version.rb
8
- lib/jnlp/jnlp.rb
9
- lib/jnlp/otrunk.rb
10
- lib/jnlp/maven_jnlp.rb
11
- spec/jnlp_spec.rb
12
- spec/jnlp_with_certficate_versions_spec.rb
13
- spec/jnlp_without_versioned_jars_spec.rb
14
- spec/spec_helper.rb
15
- spec/fixtures/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp
16
- spec/fixtures/all-otrunk-snapshot-CURRENT_VERSION.txt
17
- spec/fixtures/all-otrunk-snapshot-0.1.0-20091221.214313.jnlp
18
- spec/fixtures/jnlp_without_versioned_jars.jnlp
19
- spec/fixtures/maven-jnlp.html
data/README.txt DELETED
@@ -1,48 +0,0 @@
1
- == jnlp
2
-
3
- A gem for encapsulating the content and resources referenced by Java Web Start jnlps
4
-
5
- Complete rdoc available here: http://rubywebstart.rubyforge.org/jnlp/Jnlp/Jnlp.html
6
-
7
- For more information about the structure of Java Web Start see:
8
-
9
- http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/contents.html
10
-
11
- To create a new Jnlp call Jnlp#new with a string that contains either a local path or a url.
12
-
13
- Examples:
14
-
15
- Creating a new Jnlp object from a local Java Web Start jnlp file.
16
-
17
- j = Jnlp::Jnlp.new("authoring.jnlp")
18
-
19
- Creating a new Jnlp object from a Java Web Start jnlp referenced with a url.
20
-
21
- j = Jnlp::Jnlp.new("jnlp.concord.org/dev/org/concord/maven-jnlp/otrunk-sensor/otrunk-sensor.jnlp")
22
-
23
- Once the Jnlp object is created you can call Jnlp#cache_resources to create a local cache of all the jar and nativelib resources.
24
-
25
- The structure of the cache directory and the naming using for the jar and nativelib files is the same as that used by the Java Web Start Download Servlet, see:
26
-
27
- http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/downloadservletguide.html
28
-
29
- == Building the gem
30
-
31
- === First patch Hoe
32
-
33
- Hoe versions 1.11.0 and 1.11.1 do not work with JRuby.
34
-
35
- To build the gem you will need to apply this patch to Hoe:
36
- 0001-install_gem-nows-works-with-jruby-also.patch[http://gist.github.com/raw/87670/7bd12ecff3e27dd0a1a1d750b61d4efece372374/0001-install_gem-nows-works-with-jruby-also.patch]
37
-
38
- === The source code
39
-
40
- The source code for the jnlp gem is on github[http://github.com/stepheneb/jnlp/tree/master].
41
-
42
- git clone git://github.com/stepheneb/jnlp.git
43
-
44
- === Running the tests
45
-
46
- In JRuby: jruby -S rake spec
47
- In MRI: rake spec
48
-
@@ -1,150 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <jnlp spec="1.0+" codebase="http://jnlp.concord.org/dev" href="http://jnlp.concord.org/dev/org/concord/maven-jnlp/all-otrunk-snapshot/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp">
3
- <information>
4
- <title>All OTrunk snapshot</title>
5
- <vendor>Concord Consortium</vendor>
6
- <homepage href="index.html"/>
7
- <description>Preview Basic Pas</description>
8
- <offline-allowed/>
9
- </information>
10
- <security>
11
- <all-permissions/>
12
- </security>
13
- <resources>
14
- <j2se version="1.5+" max-heap-size="128m" initial-heap-size="32m"/>
15
- <jar href="org/telscenter/sail-otrunk/sail-otrunk.jar" version="0.1.0-20090624.011056-1033-s1"/>
16
- <jar href="org/concord/otrunk/otrunk.jar" version="0.1.0-20090618.143130-890-s1"/>
17
- <jar href="org/concord/framework/framework.jar" version="0.1.0-20090608.200006-335-s1"/>
18
- <jar href="org/concord/frameworkview/frameworkview.jar" version="0.1.0-20090609.080543-154-s1"/>
19
- <jar href="org/concord/swing/swing.jar" version="0.1.0-20090514.210024-177-s1"/>
20
- <jar href="jug/jug/jug.jar" version="1.1.2-s1"/>
21
- <jar href="jdom/jdom/jdom.jar" version="1.0-s1"/>
22
- <jar href="org/concord/apple-support/apple-support.jar" version="0.1.0-20090514.210144-119-s1"/>
23
- <jar href="org/concord/loader/loader.jar" version="0.1.0-20090514.210305-114-s1"/>
24
- <jar href="net/sf/sail/sail-core/sail-core.jar" version="0.4.5-20090622.191903-1197-s1"/>
25
- <jar href="commons-beanutils/commons-beanutils/commons-beanutils.jar" version="1.7.0-s1"/>
26
- <jar href="commons-logging/commons-logging/commons-logging.jar" version="1.0.4-s1"/>
27
- <jar href="commons-lang/commons-lang/commons-lang.jar" version="2.0-s1"/>
28
- <jar href="commons-io/commons-io/commons-io.jar" version="1.1-s1"/>
29
- <jar href="log4j/log4j/log4j.jar" version="1.2.8-s1"/>
30
- <jar href="rhino/js/js.jar" version="1.5R4.1-s1"/>
31
- <jar href="script/jsr223/jsr223.jar" version="1.0-s1"/>
32
- <jar href="xstream/xstream/xstream.jar" version="1.1.2-s1"/>
33
- <jar href="net/sf/sail/sail-data-emf/sail-data-emf.jar" version="0.1.0-20090623.122855-1222-s1" main="true"/>
34
- <jar href="org/eclipse/emf/ecore/ecore.jar" version="2.2.0-s1"/>
35
- <jar href="org/eclipse/emf/common/common.jar" version="2.2.0-s1"/>
36
- <jar href="org/eclipse/emf/ecore-xmi/ecore-xmi.jar" version="2.2.0-s1"/>
37
- <jar href="org/concord/portfolio/portfolio.jar" version="0.1.0-20090623.220029-348-s1"/>
38
- <jar href="org/concord/otrunk-ui/otrunk-ui.jar" version="0.1.0-20090623.210537-586-s1"/>
39
- <jar href="org/concord/external/sound/jlayer/jlayer.jar" version="1.0-s1"/>
40
- <jar href="org/concord/external/sound/mp3spi/mp3spi.jar" version="1.9.4-s1"/>
41
- <jar href="org/concord/external/sound/tritonus/tritonus.jar" version="0.1-s1"/>
42
- <jar href="org/concord/external/ekit/ekit.jar" version="1.0-s1"/>
43
- <jar href="org/concord/httpclient/httpclient.jar" version="0.1.0-20080330.082248-19-s1"/>
44
- <jar href="org/concord/datagraph/datagraph.jar" version="0.1.0-20090611.191746-347-s1"/>
45
- <jar href="org/concord/data/data.jar" version="0.2.0-20090609.080111-22-s1"/>
46
- <jar href="org/concord/graphutil/graphutil.jar" version="0.1.0-20090610.155749-284-s1"/>
47
- <jar href="org/concord/graph/graph.jar" version="0.1.0-20090514.210056-141-s1"/>
48
- <jar href="org/concord/pedagogica/pedagogica.jar" version="0.1.0-20090609.084420-169-s1"/>
49
- <jar href="org/concord/collisions/collisions.jar" version="0.1.0-20090623.220135-381-s1"/>
50
- <jar href="org/concord/math/math.jar" version="0.1.0-20090514.210625-115-s1"/>
51
- <jar href="org/concord/external/jep/jep.jar" version="1.0-s1"/>
52
- <jar href="org/concord/external/vecmath/vecmath.jar" version="2.0-s1"/>
53
- <jar href="org/concord/multimedia/multimedia.jar" version="0.1.0-20090623.220116-389-s1"/>
54
- <jar href="org/concord/external/animating-card-layout/animating-card-layout.jar" version="1.0-s1"/>
55
- <jar href="org/concord/otrunk/data-util/data-util.jar" version="0.1.0-20090623.220054-593-s1"/>
56
- <jar href="org/concord/sensor/sensor.jar" version="0.2.0-20090609.084454-4-s1"/>
57
- <jar href="org/concord/external/rxtx/rxtx-comm/rxtx-comm.jar" version="2.1.7-r2-s1"/>
58
- <jar href="org/concord/biologica/biologica.jar" version="0.1.0-20090623.154913-443-s1"/>
59
- <jar href="org/concord/external/jna/jna-examples/jna-examples.jar" version="0.1.0-20090409.210850-1-s1"/>
60
- <jar href="org/concord/external/jri/libjri/libjri.jar" version="0.4-1-20081104.174358-4-s1"/>
61
- <jar href="bsf/bsf/bsf.jar" version="2.4.0-s1"/>
62
- <jar href="org/concord/external/jna/jna-jws/jna-jws.jar" version="3.0.9-s1"/>
63
- <jar href="org/concord/otrunk-biologica/otrunk-biologica.jar" version="0.1.0-20090623.220324-415-s1"/>
64
- <jar href="org/concord/otrunk/ot-script/ot-javascript/ot-javascript.jar" version="0.1.0-20090619.090348-301-s1"/>
65
- <jar href="org/concord/otrunk/ot-script/ot-script-api/ot-script-api.jar" version="0.1.0-20090619.080512-295-s1"/>
66
- <jar href="org/concord/otrunk/ot-script/ot-script-view/ot-script-view.jar" version="0.1.0-20090619.090404-262-s1"/>
67
- <jar href="org/concord/otrunk-mw/otrunk-mw.jar" version="0.1.0-20090623.220414-620-s1"/>
68
- <jar href="org/concord/modeler/mw/mw.jar" version="2.1.0-20090619.190127-32-s1"/>
69
- <jar href="org/concord/rtt-applets/rtt-applets.jar" version="0.1.0-20090624.025752-197-s1"/>
70
- <jar href="org/concord/graph-function/graph-function.jar" version="0.1.0-20090623.040837-181-s1"/>
71
- <jar href="org/concord/algebra-objects/algebra-objects.jar" version="0.1.0-20090623.080244-212-s1"/>
72
- <jar href="org/concord/shape-scaler/shape-scaler.jar" version="0.1.0-20090515.084644-117-s1"/>
73
- <jar href="org/concord/otrunk-nlogo4/otrunk-nlogo4.jar" version="0.1.0-20090609.084259-167-s1"/>
74
- <jar href="org/concord/nlogo/netlogo4lite/netlogo4lite.jar" version="4.0-20080411.140821-1-s1"/>
75
- <jar href="org/concord/external/log/log4j/log4j.jar" version="1.2.15-s1"/>
76
- <jar href="org/concord/otrunk/otrunk-phet/otrunk-phet.jar" version="0.1.0-20090609.084329-189-s1"/>
77
- <jar href="org/concord/external/phet/phetballoons/phetballoons.jar" version="1.0.3-s1"/>
78
- <jar href="org/concord/external/phet/phetramp/phetramp.jar" version="1.0.0-s1"/>
79
- <jar href="org/concord/external/phet/phetsound/phetsound.jar" version="1.0.1-s1"/>
80
- <jar href="org/concord/external/phet/phetdischargelamps/phetdischargelamps.jar" version="1.0.1-s1"/>
81
- <jar href="org/concord/external/phet/phetfaraday/phetfaraday.jar" version="1.0.3-s1"/>
82
- <jar href="org/concord/external/phet/phetwave/phetwave.jar" version="1.0.3-s1"/>
83
- <jar href="org/concord/external/phet/phetskatepark/phetskatepark.jar" version="1.2-s1"/>
84
- <jar href="org/concord/otrunk-cck/otrunk-cck.jar" version="0.1.0-20090619.090141-375-s1"/>
85
- <jar href="org/concord/external/phet/phetcck/phetcck.jar" version="1.0.4-20090122.200346-31-s1"/>
86
- <jar href="org/concord/examples/examples.jar" version="0.1.0-20090623.220156-287-s1"/>
87
- <jar href="org/concord/function-graph/function-graph.jar" version="0.1.0-20090515.082347-99-s1"/>
88
- <jar href="org/concord/otrunk/otrunk-velocity/otrunk-velocity.jar" version="0.1.0-20090619.080914-278-s1"/>
89
- <jar href="org/apache/velocity/velocity/velocity.jar" version="1.5-s1"/>
90
- <jar href="commons-collections/commons-collections/commons-collections.jar" version="3.1-s1"/>
91
- <jar href="oro/oro/oro.jar" version="2.0.8-s1"/>
92
- <jar href="org/apache/velocity/velocity-tools/velocity-tools.jar" version="1.3-s1"/>
93
- <jar href="commons-digester/commons-digester/commons-digester.jar" version="1.8-s1"/>
94
- <jar href="commons-validator/commons-validator/commons-validator.jar" version="1.3.1-s1"/>
95
- <jar href="sslext/sslext/sslext.jar" version="1.2-0-s1"/>
96
- <jar href="velocity/velocity/velocity.jar" version="1.4-s1"/>
97
- <jar href="velocity/velocity-dep/velocity-dep.jar" version="1.4-s1"/>
98
- <jar href="org/concord/otrunk/otrunk-udl/otrunk-udl.jar" version="0.1.0-20090623.220455-990-s1"/>
99
- <jar href="org/concord/otrunk-browser/otrunk-browser.jar" version="0.1.0-20090623.220215-361-s1"/>
100
- <jar href="org/mozdev/mozswing/mozswing-complete/mozswing-complete.jar" version="1.1-s1"/>
101
- <jar href="org/concord/external/tts/narrator/narrator.jar" version="1.1-s1"/>
102
- <jar href="org/concord/external/tts/freetts/freetts.jar" version="1.1-s1"/>
103
- <jar href="org/concord/external/tts/en_us/en_us.jar" version="1.1-s1"/>
104
- <jar href="org/concord/external/tts/cmutimelex/cmutimelex.jar" version="1.1-s1"/>
105
- <jar href="org/concord/external/tts/cmulex/cmulex.jar" version="1.1-s1"/>
106
- <jar href="org/concord/external/tts/cmudict04/cmudict04.jar" version="1.1-s1"/>
107
- <jar href="org/concord/external/tts/cmu_us_kal/cmu_us_kal.jar" version="1.1-s1"/>
108
- <jar href="org/concord/external/tts/cmu_time_awb/cmu_time_awb.jar" version="1.1-s1"/>
109
- <jar href="org/concord/otrunk/otrunk-swingx/otrunk-swingx.jar" version="0.1.0-20090623.220435-116-s1"/>
110
- <jar href="org/swinglabs/swingx/swingx.jar" version="0.9.5-2-s1"/>
111
- <jar href="org/concord/otrunk/otrunk-diy/otrunk-diy.jar" version="0.1.0-20080326.093552-20-s1"/>
112
- <jar href="org/concord/sensor-native/sensor-native.jar" version="0.1.0-20090609.084526-195-s1"/>
113
- <jar href="org/concord/sensor/sensor-vernier/sensor-vernier.jar" version="0.2.0-20090609.084509-4-s1"/>
114
- <jar href="org/concord/sensor/labpro-usb/labpro-usb.jar" version="0.2.0-20090514.211132-4-s1"/>
115
- <jar href="org/concord/sensor/labquest-jna/labquest-jna.jar" version="0.1.0-20090514.211150-11-s1"/>
116
- <jar href="org/concord/sensor/sensor-dataharvest/sensor-dataharvest.jar" version="0.1.0-20090319.210620-9-s1"/>
117
- <jar href="org/concord/ftdi-serial-wrapper/ftdi-serial-wrapper.jar" version="0.1.0-20090514.211036-121-s1"/>
118
- <jar href="org/concord/otrunk/ot-script/ot-bsf/ot-bsf.jar" version="0.1.0-20090619.090331-302-s1"/>
119
- <jar href="org/concord/otrunk/ot-script/ot-jruby/ot-jruby.jar" version="0.1.0-20090619.082151-289-s1"/>
120
- <jar href="org/jruby/jruby-complete/jruby-complete.jar" version="1.1.4-s1"/>
121
- <jar href="org/concord/otrunk/ot-script/ot-jython/ot-jython.jar" version="0.1.0-20090619.082210-280-s1"/>
122
- <jar href="org/jython/jython/jython.jar" version="2.2.1-20080311.150247-1-s1"/>
123
- <jar href="org/concord/otrunk-collisions/otrunk-collisions.jar" version="0.1.0-20090623.220341-361-s1"/>
124
- <jar href="org/concord/otrunk/otrunk-intrasession/otrunk-intrasession.jar" version="0.1.0-20090623.220357-216-s1"/>
125
- <jar href="org/concord/otrunk/otrunk-report-libraries/otrunk-report-libraries.jar" version="0.1.0-20090611.180115-10-s1"/>
126
- <property name="maven.jnlp.version" value="all-otrunk-snapshot-0.1.0-20090624.030355"/>
127
- </resources>
128
- <resources os="Linux">
129
- <nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar.jar" version="2.1.7-r2-s1"/>
130
- </resources>
131
- <resources os="Windows">
132
- <nativelib href="org/concord/external/jna/jna-jnidispatch/jna-jnidispatch-win32-nar.jar" version="3.0.9-s1"/>
133
- <nativelib href="org/concord/external/tts/quadmore/quadmore-win32-nar.jar" version="1.0-20080128.214245-1-s1"/>
134
- <nativelib href="org/concord/sensor/vernier/vernier-goio/vernier-goio-win32-nar.jar" version="1.4.0-s1"/>
135
- <nativelib href="org/concord/sensor/labpro-usb-native/labpro-usb-native-win32-nar.jar" version="0.2.0-20090323.155823-1-s1"/>
136
- <nativelib href="org/concord/ftdi-serial-wrapper-native/ftdi-serial-wrapper-native-win32-nar.jar" version="0.1.0-20070303.181906-4-s1"/>
137
- <nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-win32-nar.jar" version="2.1.7-r2-s1"/>
138
- <nativelib href="org/concord/sensor/ti/ti-cbl/ti-cbl-win32-nar.jar" version="0.1.1-s1"/>
139
- </resources>
140
- <resources os="Mac OS X">
141
- <nativelib href="org/concord/external/jri/libjri-native-osx/libjri-native-osx-macosx-nar.jar" version="0.4-1-20081104.174859-5-s1"/>
142
- <nativelib href="org/concord/external/jna/jna-jnidispatch/jna-jnidispatch-macosx-nar.jar" version="3.0.9-s1"/>
143
- <nativelib href="org/mozdev/mozswing/mozswing-cocoautils/mozswing-cocoautils-macosx-nar.jar" version="1.0-20080124.063453-1-s1"/>
144
- <nativelib href="org/concord/sensor/vernier/vernier-goio/vernier-goio-macosx-nar.jar" version="1.4.0-s1"/>
145
- <nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-macosx-nar.jar" version="2.1.7-r2-s1"/>
146
- </resources>
147
- <application-desc main-class="net.sf.sail.emf.launch.EMFLauncher3">
148
- <argument>dummy</argument>
149
- </application-desc>
150
- </jnlp>