public
Description: BlogBridge, the cross platform, open source, blog and rss reader with super powers!
Homepage: http://www.blogbridge.com
Clone URL: git://github.com/pitosalas/blogbridge.git
blogbridge / blogbridge.jnlp.template
100644 75 lines (66 sloc) 2.533 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
<?xml version="1.0" encoding="utf-8"?>
<!-- BlogBridge Application -->
<jnlp
  spec="1.0+"
  codebase="{deploy.base.url}"
  href="blogbridge.jnlp">
  <information>
    <title>BlogBridge {version}{title.type}</title>
    <vendor>BlogBridge, Inc.</vendor>
    <homepage href="http://www.blogbridge.com"/>
    <description>BlogBridge is a new kind of Blog Reader</description>
    <icon href="blogbridge.gif"/>
    <offline-allowed/>
    <shortcut>
      <desktop/>
      <menu submenu="BlogBridge"/>
    </shortcut>
    <association extensions="opml" mime-type="text/x-opml"/>
    <association extensions="xml" mime-type="application/xhtml+xml"/>
  </information>
  <security>
      <all-permissions/>
  </security>
  <application-desc main-class="com.salas.bb.core.ApplicationLauncher">
  </application-desc>
  <resources>
    <property name="apple.laf.useScreenMenuBar" value="true"/>
    <property name="sun.net.client.defaultReadTimeout" value="60000"/>
    <property name="sun.net.client.defaultConnectTimeout" value="30000"/>
 
    <property name="working.folder" value="{working.folder}"/>
    <property name="release.type" value="{release.type}"/>
 
    <property name="report.errors" value="true"/>
 
    <j2se version="1.5+" max-heap-size="256m" initial-heap-size="256m"/>
    <jar href="blogbridge.jar"/>
    <jar href="lib/bbutilities.jar"/>
 
    <jar href="lib/aelfred2.jar"/>
    <jar href="lib/commons-collections.jar"/>
    <jar href="lib/commons-lang.jar"/>
    <jar href="lib/commons-logging.jar"/>
    <jar href="lib/concurrent.jar"/>
    <jar href="lib/hsqldb.jar"/>
    <jar href="lib/jdom.jar"/>
    <jar href="lib/json.jar"/>
    <jar href="lib/xmlrpc-1.2-b1-patched.jar"/>
    <jar href="lib/jta.jar"/>
    <jar href="lib/jcalendar-1.3.2.jar"/>
 
    <jar href="lib/binding-1.1.jar"/>
    <jar href="lib/forms-1.1.0.jar"/>
    <jar href="lib/uif-1.5.0.jar"/>
    <jar href="lib/uif-extras-1.5.0.jar"/>
    <jar href="lib/looks-2.1.4.jar"/>
 
    <jar href="lib/rome-0.9.jar"/>
    <jar href="lib/purl-org-content-0.3.jar"/>
 
    <nativelib href="lib/native.jar"/>
    <jar href="lib/bbmac.jar"/>
  </resources>
 
  <resources os="Windows">
    <jar href="lib/bbnative_openurl.jar"/>
    <jar href="lib/bbnative_taskbar.jar"/>
  </resources>
 
  <resources os="Mac OS X">
    <jar href="lib/bbmacicon.jar"/>
    <jar href="lib/quaqua-combobox-only.jar"/>
    <jar href="lib/quaqua-filechooser-only.jar"/>
  </resources>
</jnlp>