glassfish 0.1.1-universal-java-1.5
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.
- data/COPYRIGHT +33 -0
- data/LICENSE.txt +263 -0
- data/README +12 -0
- data/bin/asadmin +7 -0
- data/bin/asadmin.bat +8 -0
- data/bin/glassfish_rails +40 -0
- data/config/asadminenv.conf +6 -0
- data/config/asenv.bat +28 -0
- data/config/asenv.conf +27 -0
- data/config/glassfish.container +4 -0
- data/domains/domain1/config/admin-keyfile +3 -0
- data/domains/domain1/config/cacerts.jks +0 -0
- data/domains/domain1/config/default-web.xml +906 -0
- data/domains/domain1/config/domain-passwords +0 -0
- data/domains/domain1/config/domain.xml +208 -0
- data/domains/domain1/config/keyfile +6 -0
- data/domains/domain1/config/keystore.jks +0 -0
- data/domains/domain1/config/logging.properties +82 -0
- data/domains/domain1/config/login.conf +18 -0
- data/domains/domain1/config/server.policy +160 -0
- data/domains/domain1/config/sun-acc.xml +40 -0
- data/domains/domain1/config/wss-server-config-1.0.xml +86 -0
- data/domains/domain1/config/wss-server-config-2.0.xml +94 -0
- data/domains/domain1/docroot/favicon.gif +0 -0
- data/domains/domain1/docroot/index.html +87 -0
- data/domains/domain1/master-password +0 -0
- data/lib/appclient/appclientlogin.conf +10 -0
- data/lib/appclient/client.policy +79 -0
- data/lib/appclient/wss-client-config-1.0.xml +84 -0
- data/lib/appclient/wss-client-config-2.0.xml +96 -0
- data/lib/dtds/application-client_1_2.dtd +292 -0
- data/lib/dtds/application-client_1_3.dtd +506 -0
- data/lib/dtds/application_1_2.dtd +197 -0
- data/lib/dtds/application_1_3.dtd +312 -0
- data/lib/dtds/connector_1_0.dtd +561 -0
- data/lib/dtds/ejb-jar_1_1.dtd +894 -0
- data/lib/dtds/ejb-jar_2_0.dtd +1671 -0
- data/lib/dtds/sun-application-client-container_1_0.dtd +123 -0
- data/lib/dtds/sun-application-client-container_1_1.dtd +264 -0
- data/lib/dtds/sun-application-client-container_1_2.dtd +267 -0
- data/lib/dtds/sun-application-client_1_3-0.dtd +57 -0
- data/lib/dtds/sun-application-client_1_4-0.dtd +182 -0
- data/lib/dtds/sun-application-client_1_4-1.dtd +431 -0
- data/lib/dtds/sun-application-client_5_0-0.dtd +495 -0
- data/lib/dtds/sun-application_1_3-0.dtd +30 -0
- data/lib/dtds/sun-application_1_4-0.dtd +44 -0
- data/lib/dtds/sun-application_5_0-0.dtd +51 -0
- data/lib/dtds/sun-cmp-mapping_1_0.dtd +100 -0
- data/lib/dtds/sun-cmp-mapping_1_1.dtd +99 -0
- data/lib/dtds/sun-cmp-mapping_1_2.dtd +106 -0
- data/lib/dtds/sun-connector_1_0-0.dtd +66 -0
- data/lib/dtds/sun-connector_1_5-0.dtd +62 -0
- data/lib/dtds/sun-domain_1_0.dtd +2007 -0
- data/lib/dtds/sun-domain_1_1.dtd +3080 -0
- data/lib/dtds/sun-domain_1_2.dtd +3697 -0
- data/lib/dtds/sun-domain_1_3.dtd +3867 -0
- data/lib/dtds/sun-ejb-jar_2_0-0.dtd +449 -0
- data/lib/dtds/sun-ejb-jar_2_0-1.dtd +454 -0
- data/lib/dtds/sun-ejb-jar_2_1-0.dtd +756 -0
- data/lib/dtds/sun-ejb-jar_2_1-1.dtd +1085 -0
- data/lib/dtds/sun-ejb-jar_3_0-0.dtd +1113 -0
- data/lib/dtds/sun-loadbalancer_1_0.dtd +156 -0
- data/lib/dtds/sun-loadbalancer_1_1.dtd +172 -0
- data/lib/dtds/sun-resources_1_0.dtd +650 -0
- data/lib/dtds/sun-resources_1_1.dtd +650 -0
- data/lib/dtds/sun-resources_1_2.dtd +662 -0
- data/lib/dtds/sun-resources_1_3.dtd +732 -0
- data/lib/dtds/sun-server_1_0.dtd +1056 -0
- data/lib/dtds/sun-web-app_2_3-0.dtd +230 -0
- data/lib/dtds/sun-web-app_2_3-1.dtd +230 -0
- data/lib/dtds/sun-web-app_2_4-0.dtd +466 -0
- data/lib/dtds/sun-web-app_2_4-1.dtd +742 -0
- data/lib/dtds/sun-web-app_2_5-0.dtd +789 -0
- data/lib/dtds/web-app_2_2.dtd +639 -0
- data/lib/dtds/web-app_2_3.dtd +1063 -0
- data/lib/dtds/web-jsptaglibrary_1_1.dtd +265 -0
- data/lib/dtds/web-jsptaglibrary_1_2.dtd +468 -0
- data/lib/package-appclient.xml +185 -0
- data/lib/processLauncher.properties +25 -0
- data/lib/processLauncher.xml +189 -0
- data/lib/schemas/XMLSchema.dtd +402 -0
- data/lib/schemas/application-client_1_4.xsd +267 -0
- data/lib/schemas/application-client_5.xsd +304 -0
- data/lib/schemas/application_1_4.xsd +315 -0
- data/lib/schemas/application_5.xsd +336 -0
- data/lib/schemas/connector_1_5.xsd +1036 -0
- data/lib/schemas/datatypes.dtd +203 -0
- data/lib/schemas/ejb-jar_2_1.xsd +2208 -0
- data/lib/schemas/ejb-jar_3_0.xsd +2706 -0
- data/lib/schemas/j2ee_1_4.xsd +1608 -0
- data/lib/schemas/j2ee_jaxrpc_mapping_1_1.xsd +886 -0
- data/lib/schemas/j2ee_web_services_1_1.xsd +491 -0
- data/lib/schemas/j2ee_web_services_client_1_1.xsd +345 -0
- data/lib/schemas/javaee_5.xsd +2096 -0
- data/lib/schemas/javaee_web_services_1_2.xsd +747 -0
- data/lib/schemas/javaee_web_services_client_1_2.xsd +578 -0
- data/lib/schemas/jax-rpc-ri-config.xsd +416 -0
- data/lib/schemas/jsp_2_0.xsd +308 -0
- data/lib/schemas/jsp_2_1.xsd +343 -0
- data/lib/schemas/orm_1_0.xsd +1516 -0
- data/lib/schemas/persistence_1_0.xsd +260 -0
- data/lib/schemas/web-app_2_4.xsd +1234 -0
- data/lib/schemas/web-app_2_5.xsd +1271 -0
- data/lib/schemas/web-jsptaglibrary_2_0.xsd +1010 -0
- data/lib/schemas/web-jsptaglibrary_2_1.xsd +1144 -0
- data/lib/schemas/xml.xsd +82 -0
- data/modules/admin-cli-10.0-SNAPSHOT.jar +0 -0
- data/modules/auto-depends-0.2-SNAPSHOT.jar +0 -0
- data/modules/cli-framework-10.0-SNAPSHOT.jar +0 -0
- data/modules/common-ee-util-10.0-SNAPSHOT.jar +0 -0
- data/modules/common-util-10.0-SNAPSHOT.jar +0 -0
- data/modules/config-0.2-SNAPSHOT.jar +0 -0
- data/modules/config-api-10.0-SNAPSHOT.jar +0 -0
- data/modules/gf-jruby-connector-10.0-SNAPSHOT.jar +0 -0
- data/modules/glassfish-10.0-SNAPSHOT.jar +0 -0
- data/modules/glassfish-api-10.0-SNAPSHOT.jar +0 -0
- data/modules/glassfish.rb +10 -0
- data/modules/grizzly-framework-1.7.1.jar +0 -0
- data/modules/grizzly-http-1.7.1.jar +0 -0
- data/modules/grizzly-http-utils-1.7.1.jar +0 -0
- data/modules/grizzly-jruby-1.7.0.jar +0 -0
- data/modules/grizzly-jruby-module-1.7.0.jar +0 -0
- data/modules/grizzly-module-1.7.1.jar +0 -0
- data/modules/grizzly-portunif-1.7.1.jar +0 -0
- data/modules/grizzly-rcm-1.7.1.jar +0 -0
- data/modules/hk2-0.2-SNAPSHOT.jar +0 -0
- data/modules/hk2-core-0.2-SNAPSHOT.jar +0 -0
- data/modules/junit-4.3.1.jar +0 -0
- data/modules/kernel-10.0-SNAPSHOT.jar +0 -0
- data/modules/persistence-api-1.0b.jar +0 -0
- data/modules/servlet-api-2.5.jar +0 -0
- data/modules/sjsxp-1.0.jar +0 -0
- data/modules/stax-api-1.0-2.jar +0 -0
- data/modules/tiger-types-1.0.jar +0 -0
- metadata +206 -0
data/lib/schemas/xml.xsd
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
<?xml version='1.0'?>
|
|
2
|
+
|
|
3
|
+
<!DOCTYPE xs:schema PUBLIC "-//W3C//DTD XMLSCHEMA 200102//EN" "XMLSchema.dtd" >
|
|
4
|
+
<xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace" xmlns:xs="http://www.w3.org/2001/XMLSchema" xml:lang="en">
|
|
5
|
+
|
|
6
|
+
<xs:annotation>
|
|
7
|
+
<xs:documentation>
|
|
8
|
+
See http://www.w3.org/XML/1998/namespace.html and
|
|
9
|
+
http://www.w3.org/TR/REC-xml for information about this namespace.
|
|
10
|
+
</xs:documentation>
|
|
11
|
+
</xs:annotation>
|
|
12
|
+
|
|
13
|
+
<xs:annotation>
|
|
14
|
+
<xs:documentation>This schema defines attributes and an attribute group
|
|
15
|
+
suitable for use by
|
|
16
|
+
schemas wishing to allow xml:base, xml:lang or xml:space attributes
|
|
17
|
+
on elements they define.
|
|
18
|
+
|
|
19
|
+
To enable this, such a schema must import this schema
|
|
20
|
+
for the XML namespace, e.g. as follows:
|
|
21
|
+
<schema . . .>
|
|
22
|
+
. . .
|
|
23
|
+
<import namespace="http://www.w3.org/XML/1998/namespace"
|
|
24
|
+
schemaLocation="http://www.w3.org/2001/03/xml.xsd"/>
|
|
25
|
+
|
|
26
|
+
Subsequently, qualified reference to any of the attributes
|
|
27
|
+
or the group defined below will have the desired effect, e.g.
|
|
28
|
+
|
|
29
|
+
<type . . .>
|
|
30
|
+
. . .
|
|
31
|
+
<attributeGroup ref="xml:specialAttrs"/>
|
|
32
|
+
|
|
33
|
+
will define a type which will schema-validate an instance
|
|
34
|
+
element with any of those attributes</xs:documentation>
|
|
35
|
+
</xs:annotation>
|
|
36
|
+
|
|
37
|
+
<xs:annotation>
|
|
38
|
+
<xs:documentation>In keeping with the XML Schema WG's standard versioning
|
|
39
|
+
policy, this schema document will persist at
|
|
40
|
+
http://www.w3.org/2001/03/xml.xsd.
|
|
41
|
+
At the date of issue it can also be found at
|
|
42
|
+
http://www.w3.org/2001/xml.xsd.
|
|
43
|
+
The schema document at that URI may however change in the future,
|
|
44
|
+
in order to remain compatible with the latest version of XML Schema
|
|
45
|
+
itself. In other words, if the XML Schema namespace changes, the version
|
|
46
|
+
of this document at
|
|
47
|
+
http://www.w3.org/2001/xml.xsd will change
|
|
48
|
+
accordingly; the version at
|
|
49
|
+
http://www.w3.org/2001/03/xml.xsd will not change.
|
|
50
|
+
</xs:documentation>
|
|
51
|
+
</xs:annotation>
|
|
52
|
+
|
|
53
|
+
<xs:attribute name="lang" type="xs:language">
|
|
54
|
+
<xs:annotation>
|
|
55
|
+
<xs:documentation>In due course, we should install the relevant ISO 2- and 3-letter
|
|
56
|
+
codes as the enumerated possible values . . .</xs:documentation>
|
|
57
|
+
</xs:annotation>
|
|
58
|
+
</xs:attribute>
|
|
59
|
+
|
|
60
|
+
<xs:attribute name="space" default="preserve">
|
|
61
|
+
<xs:simpleType>
|
|
62
|
+
<xs:restriction base="xs:NCName">
|
|
63
|
+
<xs:enumeration value="default"/>
|
|
64
|
+
<xs:enumeration value="preserve"/>
|
|
65
|
+
</xs:restriction>
|
|
66
|
+
</xs:simpleType>
|
|
67
|
+
</xs:attribute>
|
|
68
|
+
|
|
69
|
+
<xs:attribute name="base" type="xs:anyURI">
|
|
70
|
+
<xs:annotation>
|
|
71
|
+
<xs:documentation>See http://www.w3.org/TR/xmlbase/ for
|
|
72
|
+
information about this attribute.</xs:documentation>
|
|
73
|
+
</xs:annotation>
|
|
74
|
+
</xs:attribute>
|
|
75
|
+
|
|
76
|
+
<xs:attributeGroup name="specialAttrs">
|
|
77
|
+
<xs:attribute ref="xml:base"/>
|
|
78
|
+
<xs:attribute ref="xml:lang"/>
|
|
79
|
+
<xs:attribute ref="xml:space"/>
|
|
80
|
+
</xs:attributeGroup>
|
|
81
|
+
|
|
82
|
+
</xs:schema>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
extensions: []
|
|
3
|
+
homepage: http://wiki.glassfish.java.net/Wiki.jsp?page=JRuby
|
|
4
|
+
executables:
|
|
5
|
+
- glassfish_rails
|
|
6
|
+
- asadmin
|
|
7
|
+
- asadmin.bat
|
|
8
|
+
version: !ruby/object:Gem::Version
|
|
9
|
+
version: 0.1.1
|
|
10
|
+
post_install_message:
|
|
11
|
+
date: 2008-02-13 08:00:00 +00:00
|
|
12
|
+
files:
|
|
13
|
+
- bin/asadmin
|
|
14
|
+
- bin/asadmin.bat
|
|
15
|
+
- bin/glassfish_rails
|
|
16
|
+
- lib/appclient
|
|
17
|
+
- lib/dtds
|
|
18
|
+
- lib/package-appclient.xml
|
|
19
|
+
- lib/processLauncher.properties
|
|
20
|
+
- lib/processLauncher.xml
|
|
21
|
+
- lib/schemas
|
|
22
|
+
- lib/appclient/appclientlogin.conf
|
|
23
|
+
- lib/appclient/client.policy
|
|
24
|
+
- lib/appclient/wss-client-config-1.0.xml
|
|
25
|
+
- lib/appclient/wss-client-config-2.0.xml
|
|
26
|
+
- lib/dtds/application-client_1_2.dtd
|
|
27
|
+
- lib/dtds/application-client_1_3.dtd
|
|
28
|
+
- lib/dtds/application_1_2.dtd
|
|
29
|
+
- lib/dtds/application_1_3.dtd
|
|
30
|
+
- lib/dtds/connector_1_0.dtd
|
|
31
|
+
- lib/dtds/ejb-jar_1_1.dtd
|
|
32
|
+
- lib/dtds/ejb-jar_2_0.dtd
|
|
33
|
+
- lib/dtds/sun-application-client-container_1_0.dtd
|
|
34
|
+
- lib/dtds/sun-application-client-container_1_1.dtd
|
|
35
|
+
- lib/dtds/sun-application-client-container_1_2.dtd
|
|
36
|
+
- lib/dtds/sun-application-client_1_3-0.dtd
|
|
37
|
+
- lib/dtds/sun-application-client_1_4-0.dtd
|
|
38
|
+
- lib/dtds/sun-application-client_1_4-1.dtd
|
|
39
|
+
- lib/dtds/sun-application-client_5_0-0.dtd
|
|
40
|
+
- lib/dtds/sun-application_1_3-0.dtd
|
|
41
|
+
- lib/dtds/sun-application_1_4-0.dtd
|
|
42
|
+
- lib/dtds/sun-application_5_0-0.dtd
|
|
43
|
+
- lib/dtds/sun-cmp-mapping_1_0.dtd
|
|
44
|
+
- lib/dtds/sun-cmp-mapping_1_1.dtd
|
|
45
|
+
- lib/dtds/sun-cmp-mapping_1_2.dtd
|
|
46
|
+
- lib/dtds/sun-connector_1_0-0.dtd
|
|
47
|
+
- lib/dtds/sun-connector_1_5-0.dtd
|
|
48
|
+
- lib/dtds/sun-domain_1_0.dtd
|
|
49
|
+
- lib/dtds/sun-domain_1_1.dtd
|
|
50
|
+
- lib/dtds/sun-domain_1_2.dtd
|
|
51
|
+
- lib/dtds/sun-domain_1_3.dtd
|
|
52
|
+
- lib/dtds/sun-ejb-jar_2_0-0.dtd
|
|
53
|
+
- lib/dtds/sun-ejb-jar_2_0-1.dtd
|
|
54
|
+
- lib/dtds/sun-ejb-jar_2_1-0.dtd
|
|
55
|
+
- lib/dtds/sun-ejb-jar_2_1-1.dtd
|
|
56
|
+
- lib/dtds/sun-ejb-jar_3_0-0.dtd
|
|
57
|
+
- lib/dtds/sun-loadbalancer_1_0.dtd
|
|
58
|
+
- lib/dtds/sun-loadbalancer_1_1.dtd
|
|
59
|
+
- lib/dtds/sun-resources_1_0.dtd
|
|
60
|
+
- lib/dtds/sun-resources_1_1.dtd
|
|
61
|
+
- lib/dtds/sun-resources_1_2.dtd
|
|
62
|
+
- lib/dtds/sun-resources_1_3.dtd
|
|
63
|
+
- lib/dtds/sun-server_1_0.dtd
|
|
64
|
+
- lib/dtds/sun-web-app_2_3-0.dtd
|
|
65
|
+
- lib/dtds/sun-web-app_2_3-1.dtd
|
|
66
|
+
- lib/dtds/sun-web-app_2_4-0.dtd
|
|
67
|
+
- lib/dtds/sun-web-app_2_4-1.dtd
|
|
68
|
+
- lib/dtds/sun-web-app_2_5-0.dtd
|
|
69
|
+
- lib/dtds/web-app_2_2.dtd
|
|
70
|
+
- lib/dtds/web-app_2_3.dtd
|
|
71
|
+
- lib/dtds/web-jsptaglibrary_1_1.dtd
|
|
72
|
+
- lib/dtds/web-jsptaglibrary_1_2.dtd
|
|
73
|
+
- lib/schemas/application-client_1_4.xsd
|
|
74
|
+
- lib/schemas/application-client_5.xsd
|
|
75
|
+
- lib/schemas/application_1_4.xsd
|
|
76
|
+
- lib/schemas/application_5.xsd
|
|
77
|
+
- lib/schemas/connector_1_5.xsd
|
|
78
|
+
- lib/schemas/datatypes.dtd
|
|
79
|
+
- lib/schemas/ejb-jar_2_1.xsd
|
|
80
|
+
- lib/schemas/ejb-jar_3_0.xsd
|
|
81
|
+
- lib/schemas/j2ee_1_4.xsd
|
|
82
|
+
- lib/schemas/j2ee_jaxrpc_mapping_1_1.xsd
|
|
83
|
+
- lib/schemas/j2ee_web_services_1_1.xsd
|
|
84
|
+
- lib/schemas/j2ee_web_services_client_1_1.xsd
|
|
85
|
+
- lib/schemas/javaee_5.xsd
|
|
86
|
+
- lib/schemas/javaee_web_services_1_2.xsd
|
|
87
|
+
- lib/schemas/javaee_web_services_client_1_2.xsd
|
|
88
|
+
- lib/schemas/jax-rpc-ri-config.xsd
|
|
89
|
+
- lib/schemas/jsp_2_0.xsd
|
|
90
|
+
- lib/schemas/jsp_2_1.xsd
|
|
91
|
+
- lib/schemas/orm_1_0.xsd
|
|
92
|
+
- lib/schemas/persistence_1_0.xsd
|
|
93
|
+
- lib/schemas/web-app_2_4.xsd
|
|
94
|
+
- lib/schemas/web-app_2_5.xsd
|
|
95
|
+
- lib/schemas/web-jsptaglibrary_2_0.xsd
|
|
96
|
+
- lib/schemas/web-jsptaglibrary_2_1.xsd
|
|
97
|
+
- lib/schemas/xml.xsd
|
|
98
|
+
- lib/schemas/XMLSchema.dtd
|
|
99
|
+
- modules/admin-cli-10.0-SNAPSHOT.jar
|
|
100
|
+
- modules/auto-depends-0.2-SNAPSHOT.jar
|
|
101
|
+
- modules/cli-framework-10.0-SNAPSHOT.jar
|
|
102
|
+
- modules/common-ee-util-10.0-SNAPSHOT.jar
|
|
103
|
+
- modules/common-util-10.0-SNAPSHOT.jar
|
|
104
|
+
- modules/config-0.2-SNAPSHOT.jar
|
|
105
|
+
- modules/config-api-10.0-SNAPSHOT.jar
|
|
106
|
+
- modules/gf-jruby-connector-10.0-SNAPSHOT.jar
|
|
107
|
+
- modules/glassfish-10.0-SNAPSHOT.jar
|
|
108
|
+
- modules/glassfish-api-10.0-SNAPSHOT.jar
|
|
109
|
+
- modules/glassfish.rb
|
|
110
|
+
- modules/grizzly-framework-1.7.1.jar
|
|
111
|
+
- modules/grizzly-http-1.7.1.jar
|
|
112
|
+
- modules/grizzly-http-utils-1.7.1.jar
|
|
113
|
+
- modules/grizzly-jruby-1.7.0.jar
|
|
114
|
+
- modules/grizzly-jruby-module-1.7.0.jar
|
|
115
|
+
- modules/grizzly-module-1.7.1.jar
|
|
116
|
+
- modules/grizzly-portunif-1.7.1.jar
|
|
117
|
+
- modules/grizzly-rcm-1.7.1.jar
|
|
118
|
+
- modules/hk2-0.2-SNAPSHOT.jar
|
|
119
|
+
- modules/hk2-core-0.2-SNAPSHOT.jar
|
|
120
|
+
- modules/junit-4.3.1.jar
|
|
121
|
+
- modules/kernel-10.0-SNAPSHOT.jar
|
|
122
|
+
- modules/persistence-api-1.0b.jar
|
|
123
|
+
- modules/servlet-api-2.5.jar
|
|
124
|
+
- modules/sjsxp-1.0.jar
|
|
125
|
+
- modules/stax-api-1.0-2.jar
|
|
126
|
+
- modules/tiger-types-1.0.jar
|
|
127
|
+
- config/asadminenv.conf
|
|
128
|
+
- config/asenv.bat
|
|
129
|
+
- config/asenv.conf
|
|
130
|
+
- config/glassfish.container
|
|
131
|
+
- domains/domain1
|
|
132
|
+
- domains/domain1/applications
|
|
133
|
+
- domains/domain1/config
|
|
134
|
+
- domains/domain1/docroot
|
|
135
|
+
- domains/domain1/generated
|
|
136
|
+
- domains/domain1/logs
|
|
137
|
+
- domains/domain1/master-password
|
|
138
|
+
- domains/domain1/session-store
|
|
139
|
+
- domains/domain1/applications/j2ee-apps
|
|
140
|
+
- domains/domain1/applications/j2ee-modules
|
|
141
|
+
- domains/domain1/applications/lifecycle-modules
|
|
142
|
+
- domains/domain1/applications/mbeans
|
|
143
|
+
- domains/domain1/config/admin-keyfile
|
|
144
|
+
- domains/domain1/config/cacerts.jks
|
|
145
|
+
- domains/domain1/config/default-config
|
|
146
|
+
- domains/domain1/config/default-web.xml
|
|
147
|
+
- domains/domain1/config/domain-passwords
|
|
148
|
+
- domains/domain1/config/domain.xml
|
|
149
|
+
- domains/domain1/config/keyfile
|
|
150
|
+
- domains/domain1/config/keystore.jks
|
|
151
|
+
- domains/domain1/config/logging.properties
|
|
152
|
+
- domains/domain1/config/login.conf
|
|
153
|
+
- domains/domain1/config/server.policy
|
|
154
|
+
- domains/domain1/config/sun-acc.xml
|
|
155
|
+
- domains/domain1/config/wss-server-config-1.0.xml
|
|
156
|
+
- domains/domain1/config/wss-server-config-2.0.xml
|
|
157
|
+
- domains/domain1/config/default-config/docroot
|
|
158
|
+
- domains/domain1/config/default-config/lib
|
|
159
|
+
- domains/domain1/config/default-config/lib/ext
|
|
160
|
+
- domains/domain1/docroot/favicon.gif
|
|
161
|
+
- domains/domain1/docroot/index.html
|
|
162
|
+
- domains/domain1/generated/ejb
|
|
163
|
+
- domains/domain1/generated/jsp
|
|
164
|
+
- domains/domain1/generated/xml
|
|
165
|
+
- README
|
|
166
|
+
- LICENSE.txt
|
|
167
|
+
- COPYRIGHT
|
|
168
|
+
rubygems_version: 1.0.1
|
|
169
|
+
rdoc_options: []
|
|
170
|
+
signing_key:
|
|
171
|
+
cert_chain: []
|
|
172
|
+
name: glassfish
|
|
173
|
+
has_rdoc: false
|
|
174
|
+
platform: universal-java-1.5
|
|
175
|
+
summary: GlassFish V3 Application Server for JRuby
|
|
176
|
+
default_executable: glassfish_rails
|
|
177
|
+
bindir: bin
|
|
178
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
179
|
+
version:
|
|
180
|
+
requirements:
|
|
181
|
+
- - '>='
|
|
182
|
+
- !ruby/object:Gem::Version
|
|
183
|
+
version: !str 0
|
|
184
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
185
|
+
version:
|
|
186
|
+
requirements:
|
|
187
|
+
- - '>='
|
|
188
|
+
- !ruby/object:Gem::Version
|
|
189
|
+
version: !str 0
|
|
190
|
+
require_paths:
|
|
191
|
+
- modules
|
|
192
|
+
specification_version: 2
|
|
193
|
+
test_files: []
|
|
194
|
+
dependencies: []
|
|
195
|
+
description: GlassFish gem is an embedded GlassFish V3 application server which would
|
|
196
|
+
help run your Ruby on Rails application
|
|
197
|
+
email: pramod.gopinath@sun.com, jerome.dochez@sun.com
|
|
198
|
+
authors:
|
|
199
|
+
- Pramod Gopinath, Jerome Dochez
|
|
200
|
+
extra_rdoc_files:
|
|
201
|
+
- README
|
|
202
|
+
- LICENSE.txt
|
|
203
|
+
- COPYRIGHT
|
|
204
|
+
requirements: []
|
|
205
|
+
rubyforge_project: glassfishgem
|
|
206
|
+
autorequire: GlassFish
|