glassfish 0.9.3-universal-java → 0.9.4-universal-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. data/bin/gfrake +1 -1
  2. data/bin/glassfish +2 -1
  3. data/bin/glassfish_rails +2 -57
  4. data/config/asenv.bat +9 -8
  5. data/config/asenv.conf +9 -5
  6. data/domains/domain1/config/admin-keyfile +3 -1
  7. data/domains/domain1/config/cacerts.jks +0 -0
  8. data/domains/domain1/config/default-web.xml +3 -1
  9. data/domains/domain1/config/domain.xml +5 -4
  10. data/domains/domain1/config/glassfish_gem_version.yml +1 -1
  11. data/domains/domain1/config/keyfile +6 -6
  12. data/domains/domain1/config/keystore.jks +0 -0
  13. data/domains/domain1/config/logging.properties +45 -129
  14. data/domains/domain1/config/login.conf +21 -21
  15. data/domains/domain1/config/server.policy +1 -1
  16. data/domains/domain1/config/sun-acc.xml +2 -2
  17. data/domains/domain1/docroot/index.html +17 -13
  18. data/domains/domain1/master-password +0 -0
  19. data/lib/command_line_parser.rb +19 -32
  20. data/lib/config.rb +39 -7
  21. data/lib/glassfish.rb +1 -0
  22. data/lib/registration/servicetag-registry.xml +18 -18
  23. data/lib/templates/default-web.xml +3 -0
  24. data/lib/templates/docroot/index.html +83 -0
  25. data/lib/templates/domain.xml +180 -171
  26. data/lib/templates/logging.properties +48 -130
  27. data/lib/templates/profile.properties +37 -37
  28. data/lib/templates/server.policy +1 -1
  29. data/lib/templates/sun-acc.xml +40 -0
  30. data/lib/version.rb +1 -1
  31. data/modules/admin-cli.jar +0 -0
  32. data/modules/api-exporter.jar +0 -0
  33. data/modules/asm-all-repackaged.jar +0 -0
  34. data/modules/auto-depends.jar +0 -0
  35. data/modules/bean-validator.jar +0 -0
  36. data/modules/branding.jar +0 -0
  37. data/modules/cli-framework.jar +0 -0
  38. data/modules/common-util.jar +0 -0
  39. data/modules/config-api.jar +0 -0
  40. data/modules/config.jar +0 -0
  41. data/modules/deployment-admin.jar +0 -0
  42. data/modules/deployment-autodeploy.jar +0 -0
  43. data/modules/deployment-common.jar +0 -0
  44. data/modules/flashlight-agent.jar +0 -0
  45. data/modules/flashlight-framework.jar +0 -0
  46. data/modules/gf-jruby-connector.jar +0 -0
  47. data/modules/gfprobe-provider-client.jar +0 -0
  48. data/modules/glassfish-api.jar +0 -0
  49. data/modules/glassfish-ee-api.jar +0 -0
  50. data/modules/glassfish-extra-jre-packages.jar +0 -0
  51. data/modules/glassfish-gem.jar +0 -0
  52. data/modules/glassfish.jar +0 -0
  53. data/modules/grizzly-comet.jar +0 -0
  54. data/modules/grizzly-cometd.jar +0 -0
  55. data/modules/grizzly-compat.jar +0 -0
  56. data/modules/grizzly-config.jar +0 -0
  57. data/modules/grizzly-framework.jar +0 -0
  58. data/modules/grizzly-http.jar +0 -0
  59. data/modules/grizzly-jruby-module.jar +0 -0
  60. data/modules/grizzly-jruby.jar +0 -0
  61. data/modules/grizzly-messagesbus.jar +0 -0
  62. data/modules/grizzly-portunif.jar +0 -0
  63. data/modules/grizzly-rcm.jar +0 -0
  64. data/modules/grizzly-utils.jar +0 -0
  65. data/modules/hk2-core.jar +0 -0
  66. data/modules/hk2.jar +0 -0
  67. data/modules/internal-api.jar +0 -0
  68. data/modules/kernel.jar +0 -0
  69. data/modules/launcher.jar +0 -0
  70. data/modules/org.apache.felix.configadmin.jar +0 -0
  71. data/modules/org.apache.felix.fileinstall.jar +0 -0
  72. data/modules/org.apache.felix.shell.jar +0 -0
  73. data/modules/org.apache.felix.shell.remote.jar +0 -0
  74. data/modules/org.apache.felix.shell.tui.jar +0 -0
  75. data/modules/osgi-main.jar +0 -0
  76. data/modules/pkg-client.jar +0 -0
  77. data/modules/tiger-types-osgi.jar +0 -0
  78. metadata +23 -26
  79. data/COPYRIGHT +0 -18
  80. data/LICENSE.txt +0 -263
  81. data/domains/domain1/config/wss-server-config-1.0.xml +0 -86
  82. data/domains/domain1/config/wss-server-config-2.0.xml +0 -94
  83. data/domains/domain1/docroot/favicon.gif +0 -0
@@ -1,130 +1,48 @@
1
- ############################################################
2
- # Default Logging Configuration File
3
- #
4
- # You can use a different file by specifying a filename
5
- # with the java.util.logging.config.file system property.
6
- # For example java -Djava.util.logging.config.file=myfile
7
- ############################################################
8
-
9
- ############################################################
10
- # Global properties
11
- ############################################################
12
-
13
- # "handlers" specifies a comma separated list of log Handler
14
- # classes. These handlers will be installed during VM startup.
15
- # Note that these classes must be on the system classpath.
16
- # By default we only configure a ConsoleHandler, which will only
17
- # show messages at the INFO and above levels.
18
-
19
- # In glassfish, it is not a good idea to add handlers this way
20
- # as it requires the handler to be on the system classpath.
21
- # A better approach is to define an HK2 component wich implements
22
- # the Hanlder contract :
23
- #
24
- # @Service(name="console")
25
- # @ContractProvided(Handler.class)
26
- # public class MyConsoleHandler implements Handler {
27
- # // implementation of Handler interface
28
- # }
29
-
30
- handlers= java.util.logging.ConsoleHandler
31
-
32
- # To also add the FileHandler, use the following line instead.
33
- #handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
34
-
35
- # Default global logging level.
36
- # This specifies which kinds of events are logged across
37
- # all loggers. For any given facility this global level
38
- # can be overriden by a facility specific level
39
- # Note that the ConsoleHandler also has a separate level
40
- # setting to limit messages printed to the console.
41
- .level= INFO
42
-
43
- ############################################################
44
- # Handler specific properties.
45
- # Describes specific configuration info for Handlers.
46
- ############################################################
47
-
48
- # this is the default hanlder for Glassfish, it writes to a log file
49
- # The handler is not registered through the handlers property above
50
- # because the implementation is not on the system class path.
51
- # GlassFish will register this handler automtically as it is
52
- # and HK2 component like described above.
53
- # rotates the file based on time or size.
54
- com.sun.enterprise.server.logging.FileandSyslogHandler.file=logs/server.log
55
- # rotation time in minutes (takes precedence on size if defined),
56
- # 0 for no rotation based on time
57
- com.sun.enterprise.server.logging.FileandSyslogHandler.rotationTimelimitInMinutes=0
58
- # rotation limit in bytes, 0 means no rotation, 500000 is the minimum
59
- com.sun.enterprise.server.logging.FileandSyslogHandler.rotationLimitInBytes=0
60
- # formatter used to format the log records in the server log file
61
- com.sun.enterprise.server.logging.FileandSyslogHandler.formatter=com.sun.enterprise.server.logging.UniformLogFormatter
62
-
63
-
64
- # default file output is in user's home directory.
65
- java.util.logging.FileHandler.pattern = %h/java%u.log
66
- java.util.logging.FileHandler.limit = 50000
67
- java.util.logging.FileHandler.count = 1
68
- java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
69
-
70
- # Limit the message that are printed on the console to INFO and above.
71
- java.util.logging.ConsoleHandler.level = INFO
72
- java.util.logging.ConsoleHandler.formatter = com.sun.enterprise.server.logging.UniformLogFormatter
73
-
74
-
75
- ############################################################
76
- # Facility specific properties.
77
- # Provides extra control for each logger.
78
- ############################################################
79
-
80
- # For example, set the com.xyz.foo logger to only log SEVERE
81
- # messages:
82
- com.xyz.foo.level = SEVERE
83
-
84
- #Some logger names for v3 are below just uncoment the line logger below and save the file. The logging code will automatically be reconfigured.
85
- #ROOTLOGGER
86
- #javax.enterprise.level=FINE
87
- #Tools Logger
88
- #javax.enterprise.system.tools.level=FINE
89
- # EJB Logger
90
- #javax.enterprise.system.container.ejb.level=FINE
91
- #JAVAMAIL_LOGGER
92
- #javax.enterprise.resource.javamail.level=FINE
93
- #JMS_LOGGER
94
- #javax.enterprise.resource.jms.level=FINE
95
- #WEB LOGGER
96
- #javax.enterprise.system.container.web.level=FINE
97
- #CMP_LOGGER
98
- #javax.enterprise.system.container.cmp.level=FINE
99
- #JDO_LOGGER
100
- #javax.enterprise.resource.jdo.level=FINE
101
- #ACC_LOGGER
102
- #javax.enterprise.system.container.appclient.level=FINE
103
- #MDB_LOGGER
104
- #javax.enterprise.system.container.ejb.mdb.level=FINE
105
- #SECURITY LOGGER
106
- #javax.enterprise.system.core.security.level=FINE
107
- #TRANSACTION_LOGGER
108
- #javax.enterprise.system.core.transaction.level=FINE
109
- #CORBA_LOGGER
110
- #javax.enterprise.resource.corba.level=FINE
111
- #ADMIN LOGGER
112
- #javax.enterprise.system.tools.admin.level=FINE
113
- #DPL_LOGGER - deployment logger
114
- #javax.enterprise.system.tools.deployment.level=FINE
115
- #SAAJ_LOGGER
116
- #javax.enterprise.system.webservices.saaj.level=FINE
117
- #UTIL_LOGGER
118
- javax.enterprise.system.util.level=FINE
119
- #NAMING_LOGGER
120
- #javax.enterprise.system.core.naming.level=FINE
121
- #CORE_LOGGER
122
- #javax.enterprise.system.core.level=FINE
123
- #LOADER_LOGGER
124
- #javax.enterprise.system.core.classloading.level=FINE
125
- #CONFIG_LOGGER
126
- #javax.enterprise.system.core.config.level=FINE
127
- #AMX_LOGGER
128
- #javax.enterprise.system.AMX.level=FINE
129
-
130
-
1
+ #GlassFish logging.properties list
2
+ #Mon Mar 16 22:32:12 PDT 2009
3
+ javax.enterprise.system.tools.admin.level=INFO
4
+ handlers=java.util.logging.ConsoleHandler
5
+ java.util.logging.ConsoleHandler.formatter=com.sun.enterprise.server.logging.UniformLogFormatter
6
+ org.apache.jasper.level=INFO
7
+ javax.enterprise.resource.corba.level=INFO
8
+ javax.enterprise.system.core.classloading.level=INFO
9
+ javax.enterprise.resource.jta.level=INFO
10
+ java.util.logging.ConsoleHandler.level=FINEST
11
+ com.sun.enterprise.server.logging.GFFileHandler.file=logs/server.log
12
+ com.sun.enterprise.server.logging.GFFileHandler.rotationTimelimitInMinutes=0
13
+ javax.enterprise.system.webservices.saaj.level=INFO
14
+ java.util.logging.FileHandler.formatter=java.util.logging.XMLFormatter
15
+ javax.enterprise.system.tools.deployment.level=INFO
16
+ javax.enterprise.system.container.ejb.level=INFO
17
+ com.sun.enterprise.server.logging.GFFileHandler.formatter=com.sun.enterprise.server.logging.UniformLogFormatter
18
+ javax.enterprise.system.core.transaction.level=INFO
19
+ org.apache.catalina.level=INFO
20
+ com.sun.enterprise.server.logging.GFFileHandler.rotationTimelimitInMinutes=0
21
+ javax.enterprise.system.container.ejb.mdb.level=INFO
22
+ org.apache.coyote.level=INFO
23
+ javax.level=INFO
24
+ java.util.logging.FileHandler.limit=50000
25
+ javax.enterprise.resource.javamail.level=INFO
26
+ com.sun.enterprise.server.logging.GFFileHandler.logtoConsole=false
27
+ javax.enterprise.system.webservices.rpc.level=INFO
28
+ javax.enterprise.system.container.web.level=INFO
29
+ com.sun.enterprise.server.logging.GFFileHandler.rotationLimitInBytes=0
30
+ javax.enterprise.system.util.level=INFO
31
+ javax.enterprise.resource.resourceadapter.level=INFO
32
+ javax.enterprise.resource.jms.level=INFO
33
+ javax.enterprise.system.core.config.level=INFO
34
+ com.sun.enterprise.server.logging.GFFileHandler.rotationLimitInBytes=0
35
+ javax.enterprise.system.level=INFO
36
+ javax.enterprise.system.core.security.level=INFO
37
+ javax.enterprise.system.container.cmp.level=INFO
38
+ java.util.logging.FileHandler.pattern=%h/java%u.log
39
+ com.sun.enterprise.server.logging.SyslogHandler.useSystemLogging=false
40
+ group-management-services=INFO
41
+ com.sun.enterprise.server.logging.GFFileHandler.alarms=false
42
+ javax.enterprise.system.webservices.registry.level=INFO
43
+ javax.enterprise.system.core.selfmanagement.level=INFO
44
+ .level=INFO
45
+ java.util.logging.FileHandler.count=1
46
+ javax.enterprise.resource.jdo.level=INFO
47
+ javax.enterprise.system.core.naming.level=INFO
48
+ com.sun.enterprise.server.logging.GFFileHandler.retainErrorsStasticsForHours=0
@@ -1,37 +1,37 @@
1
- #
2
- # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
- #
4
- # Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
5
- #
6
- # The contents of this file are subject to the terms of either the GNU
7
- # General Public License Version 2 only ("GPL") or the Common Development
8
- # and Distribution License("CDDL") (collectively, the "License"). You
9
- # may not use this file except in compliance with the License. You can obtain
10
- # a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
11
- # or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
12
- # language governing permissions and limitations under the License.
13
- #
14
- # When distributing the software, include this License Header Notice in each
15
- # file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
16
- # Sun designates this particular file as subject to the "Classpath" exception
17
- # as provided by Sun in the GPL Version 2 section of the License file that
18
- # accompanied this code. If applicable, add the following below the License
19
- # Header, with the fields enclosed by brackets [] replaced by your own
20
- # identifying information: "Portions Copyrighted [year]
21
- # [name of copyright owner]"
22
- #
23
- # Contributor(s):
24
- #
25
- # If you wish your version of this file to be governed by only the CDDL or
26
- # only the GPL Version 2, indicate your decision by adding "[Contributor]
27
- # elects to include this software in this distribution under the [CDDL or GPL
28
- # Version 2] license." If you don't indicate a single choice of license, a
29
- # recipient has the option to distribute your version of this file under
30
- # either the CDDL, the GPL Version 2 or to extend the choice of license to
31
- # its licensees as provided above. However, if you add GPL Version 2 code
32
- # and therefore, elected the GPL Version 2 license, then the option applies
33
- # only if the new code is made subject to such option by the copyright
34
- # holder.
35
- #
36
-
37
- domain.xml.style-sheets=domain.xml.xsl
1
+ #
2
+ # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
+ #
4
+ # Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
5
+ #
6
+ # The contents of this file are subject to the terms of either the GNU
7
+ # General Public License Version 2 only ("GPL") or the Common Development
8
+ # and Distribution License("CDDL") (collectively, the "License"). You
9
+ # may not use this file except in compliance with the License. You can obtain
10
+ # a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
11
+ # or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+ #
14
+ # When distributing the software, include this License Header Notice in each
15
+ # file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
16
+ # Sun designates this particular file as subject to the "Classpath" exception
17
+ # as provided by Sun in the GPL Version 2 section of the License file that
18
+ # accompanied this code. If applicable, add the following below the License
19
+ # Header, with the fields enclosed by brackets [] replaced by your own
20
+ # identifying information: "Portions Copyrighted [year]
21
+ # [name of copyright owner]"
22
+ #
23
+ # Contributor(s):
24
+ #
25
+ # If you wish your version of this file to be governed by only the CDDL or
26
+ # only the GPL Version 2, indicate your decision by adding "[Contributor]
27
+ # elects to include this software in this distribution under the [CDDL or GPL
28
+ # Version 2] license." If you don't indicate a single choice of license, a
29
+ # recipient has the option to distribute your version of this file under
30
+ # either the CDDL, the GPL Version 2 or to extend the choice of license to
31
+ # its licensees as provided above. However, if you add GPL Version 2 code
32
+ # and therefore, elected the GPL Version 2 license, then the option applies
33
+ # only if the new code is made subject to such option by the copyright
34
+ # holder.
35
+ #
36
+
37
+ domain.xml.style-sheets=domain.xml.xsl
@@ -33,7 +33,7 @@ grant codeBase "file:${com.sun.aas.installRoot}/modules/-" {
33
33
  };
34
34
 
35
35
  // Felix classes get all permissions by default
36
- grant codeBase "file:${com.sun.aas.installRoot}/felix/bin/-" {
36
+ grant codeBase "file:${com.sun.aas.installRoot}/osgi/felix/bin/-" {
37
37
  permission java.security.AllPermission;
38
38
  };
39
39
 
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <!--
4
+ Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved.
5
+ Use is subject to license terms.
6
+ -->
7
+
8
+ <!--
9
+ Please remember to customize this file for your environment. The defaults for
10
+ following fields may not be appropriate.
11
+ - target-server name, address and port
12
+ - Property security.config in message-security-config
13
+ -->
14
+
15
+ <!DOCTYPE client-container PUBLIC "-//Sun Microsystems Inc.//DTD Application Server 8.0 Application Client Container//EN" "http://www.sun.com/software/appserver/dtds/sun-application-client-container_1_2.dtd">
16
+
17
+ <client-container>
18
+ <target-server name="%%%SERVER_NAME%%%" address="localhost" port="%%%ORB_LISTENER1_PORT%%%"/>
19
+ <log-service file="" level="WARNING"/>
20
+ <message-security-config auth-layer="SOAP">
21
+ <!-- turned off by default -->
22
+ <provider-config class-name="com.sun.xml.wss.provider.ClientSecurityAuthModule" provider-id="XWS_ClientProvider" provider-type="client">
23
+ <request-policy auth-source="content"/>
24
+ <response-policy auth-source="content"/>
25
+ <property name="encryption.key.alias" value="s1as"/>
26
+ <property name="signature.key.alias" value="s1as"/>
27
+ <property name="dynamic.username.password" value="false"/>
28
+ <property name="debug" value="false"/>
29
+ </provider-config>
30
+ <provider-config class-name="com.sun.xml.wss.provider.ClientSecurityAuthModule" provider-id="ClientProvider" provider-type="client">
31
+ <request-policy auth-source="content"/>
32
+ <response-policy auth-source="content"/>
33
+ <property name="encryption.key.alias" value="s1as"/>
34
+ <property name="signature.key.alias" value="s1as"/>
35
+ <property name="dynamic.username.password" value="false"/>
36
+ <property name="debug" value="false"/>
37
+ <property name="security.config" value="${com.sun.aas.installRoot}/lib/appclient/wss-client-config-1.0.xml"/>
38
+ </provider-config>
39
+ </message-security-config>
40
+ </client-container>
data/lib/version.rb CHANGED
@@ -35,6 +35,6 @@
35
35
  #++
36
36
 
37
37
  module GlassFish
38
- VERSION = "0.9.3"
38
+ VERSION = "0.9.4"
39
39
  FULLVERSION = "GlassFish gem version: #{VERSION}\nhttp://glassfishgem.rubyforge.org"
40
40
  end
Binary file
Binary file
Binary file
Binary file
Binary file
data/modules/branding.jar CHANGED
Binary file
Binary file
Binary file
Binary file
data/modules/config.jar CHANGED
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
data/modules/hk2-core.jar CHANGED
Binary file
data/modules/hk2.jar CHANGED
Binary file
Binary file
data/modules/kernel.jar CHANGED
Binary file
data/modules/launcher.jar CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -10,9 +10,8 @@ cert_chain: []
10
10
 
11
11
  summary: GlassFish V3 Application Server for JRuby
12
12
  post_install_message:
13
- extra_rdoc_files:
14
- - LICENSE.txt
15
- - COPYRIGHT
13
+ extra_rdoc_files: []
14
+
16
15
  homepage: http://glassfishgem.rubyforge.org/
17
16
  signing_key:
18
17
  name: glassfish
@@ -49,6 +48,7 @@ files:
49
48
  - lib/registration/servicetag-registry.xml
50
49
  - lib/templates/cacerts.jks
51
50
  - lib/templates/default-web.xml
51
+ - lib/templates/docroot
52
52
  - lib/templates/domain.xml
53
53
  - lib/templates/domain.xml.xsl
54
54
  - lib/templates/keyfile
@@ -57,6 +57,8 @@ files:
57
57
  - lib/templates/login.conf
58
58
  - lib/templates/profile.properties
59
59
  - lib/templates/server.policy
60
+ - lib/templates/sun-acc.xml
61
+ - lib/templates/docroot/index.html
60
62
  - generators/gfrake
61
63
  - generators/gfrake/templates
62
64
  - generators/gfrake/templates/glassfish.yml
@@ -65,6 +67,7 @@ files:
65
67
  - modules/api-exporter.jar
66
68
  - modules/asm-all-repackaged.jar
67
69
  - modules/auto-depends.jar
70
+ - modules/bean-validator.jar
68
71
  - modules/branding.jar
69
72
  - modules/cli-framework.jar
70
73
  - modules/common-util.jar
@@ -76,13 +79,21 @@ files:
76
79
  - modules/flashlight-agent.jar
77
80
  - modules/flashlight-framework.jar
78
81
  - modules/gf-jruby-connector.jar
82
+ - modules/gfprobe-provider-client.jar
79
83
  - modules/glassfish-api.jar
84
+ - modules/glassfish-ee-api.jar
85
+ - modules/glassfish-extra-jre-packages.jar
80
86
  - modules/glassfish-gem.jar
81
87
  - modules/glassfish.jar
88
+ - modules/grizzly-comet.jar
89
+ - modules/grizzly-cometd.jar
90
+ - modules/grizzly-compat.jar
91
+ - modules/grizzly-config.jar
82
92
  - modules/grizzly-framework.jar
83
93
  - modules/grizzly-http.jar
84
94
  - modules/grizzly-jruby-module.jar
85
95
  - modules/grizzly-jruby.jar
96
+ - modules/grizzly-messagesbus.jar
86
97
  - modules/grizzly-portunif.jar
87
98
  - modules/grizzly-rcm.jar
88
99
  - modules/grizzly-utils.jar
@@ -91,6 +102,12 @@ files:
91
102
  - modules/internal-api.jar
92
103
  - modules/kernel.jar
93
104
  - modules/launcher.jar
105
+ - modules/org.apache.felix.configadmin.jar
106
+ - modules/org.apache.felix.fileinstall.jar
107
+ - modules/org.apache.felix.shell.jar
108
+ - modules/org.apache.felix.shell.remote.jar
109
+ - modules/org.apache.felix.shell.tui.jar
110
+ - modules/osgi-main.jar
94
111
  - modules/pkg-client.jar
95
112
  - modules/tiger-types-osgi.jar
96
113
  - config/asadminenv.conf
@@ -98,20 +115,11 @@ files:
98
115
  - config/asenv.conf
99
116
  - config/glassfish.container
100
117
  - domains/domain1
101
- - domains/domain1/applications
102
118
  - domains/domain1/config
103
119
  - domains/domain1/docroot
104
- - domains/domain1/generated
105
- - domains/domain1/logs
106
120
  - domains/domain1/master-password
107
- - domains/domain1/session-store
108
- - domains/domain1/applications/j2ee-apps
109
- - domains/domain1/applications/j2ee-modules
110
- - domains/domain1/applications/lifecycle-modules
111
- - domains/domain1/applications/mbeans
112
121
  - domains/domain1/config/admin-keyfile
113
122
  - domains/domain1/config/cacerts.jks
114
- - domains/domain1/config/default-config
115
123
  - domains/domain1/config/default-web.xml
116
124
  - domains/domain1/config/domain-passwords
117
125
  - domains/domain1/config/domain.xml
@@ -122,18 +130,7 @@ files:
122
130
  - domains/domain1/config/login.conf
123
131
  - domains/domain1/config/server.policy
124
132
  - domains/domain1/config/sun-acc.xml
125
- - domains/domain1/config/wss-server-config-1.0.xml
126
- - domains/domain1/config/wss-server-config-2.0.xml
127
- - domains/domain1/config/default-config/docroot
128
- - domains/domain1/config/default-config/lib
129
- - domains/domain1/config/default-config/lib/ext
130
- - domains/domain1/docroot/favicon.gif
131
133
  - domains/domain1/docroot/index.html
132
- - domains/domain1/generated/ejb
133
- - domains/domain1/generated/jsp
134
- - domains/domain1/generated/xml
135
- - LICENSE.txt
136
- - COPYRIGHT
137
134
  required_rubygems_version: !ruby/object:Gem::Requirement
138
135
  requirements:
139
136
  - - '>='
@@ -142,17 +139,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
139
  version:
143
140
  extensions: []
144
141
 
145
- rubygems_version: 1.2.0
142
+ rubygems_version: 1.3.1
146
143
  requirements: []
147
144
 
148
145
  authors:
149
146
  - Vivek Pandey, Jerome Dochez
150
- date: 2009-03-15 07:00:00 +00:00
147
+ date: 2009-06-01 07:00:00 +00:00
151
148
  platform: universal-java
152
149
  test_files: []
153
150
 
154
151
  version: !ruby/object:Gem::Version
155
- version: 0.9.3
152
+ version: 0.9.4
156
153
  require_paths:
157
154
  - lib
158
155
  dependencies: