torquebox-lite 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/jboss/bin/standalone.conf +1 -1
- data/jboss/bin/standalone.conf.bat +1 -1
- data/jboss/modules/org/projectodd/polyglot/cache/main/module.xml +58 -0
- data/jboss/modules/org/projectodd/polyglot/cache/main/polyglot-cache.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/core/main/module.xml +53 -0
- data/jboss/modules/org/projectodd/polyglot/core/main/polyglot-core.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/hasingleton/main/module.xml +47 -0
- data/jboss/modules/org/projectodd/polyglot/hasingleton/main/polyglot-hasingleton.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/jboss-logmanager.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/module.xml +62 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/netty.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/polyglot-stomp.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/stilts-conduit-server-core.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/stilts-conduit-server-spi.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomp-api.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomp-common.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomp-server-core.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomp-server-spi.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomplet-api.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomplet-server-core.jar +0 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/subsystem/socket-binding.conf +1 -0
- data/jboss/modules/org/projectodd/polyglot/stomp/main/subsystem/subsystem.xml +1 -0
- data/jboss/modules/org/projectodd/polyglot/web/main/module.xml +51 -0
- data/jboss/modules/org/projectodd/polyglot/web/main/polyglot-web.jar +0 -0
- data/jboss/modules/org/torquebox/bootstrap/main/torquebox-bootstrap.jar +0 -0
- data/jboss/modules/org/torquebox/core/main/module.xml +1 -1
- data/jboss/modules/org/torquebox/core/main/polyglot-core.jar +0 -0
- data/jboss/modules/org/torquebox/core/main/torquebox-core.jar +0 -0
- data/jboss/modules/org/torquebox/web/main/module.xml +2 -0
- data/jboss/modules/org/torquebox/web/main/polyglot-web.jar +0 -0
- data/jboss/modules/org/torquebox/web/main/torquebox-web.jar +0 -0
- data/jboss/standalone/configuration/standalone-full-ha.xml +7 -7
- data/jboss/standalone/configuration/standalone-full.xml +7 -7
- data/jboss/standalone/configuration/standalone-ha.xml +7 -7
- metadata +28 -6
data/jboss/bin/standalone.conf
CHANGED
@@ -67,4 +67,4 @@ fi
|
|
67
67
|
#JAVA_OPTS="$JAVA_OPTS -Djboss.modules.metrics=true"
|
68
68
|
|
69
69
|
|
70
|
-
JAVA_OPTS="$JAVA_OPTS -Xss2048k -Djruby.compile.invokedynamic=false $APPEND_JAVA_OPTS"
|
70
|
+
JAVA_OPTS="$JAVA_OPTS -Xss2048k -Djruby.compile.invokedynamic=false -Dorg.quartz.scheduler.skipUpdateCheck=true $APPEND_JAVA_OPTS"
|
@@ -72,4 +72,4 @@ rem set "JAVA_OPTS=%JAVA_OPTS% -Djboss.modules.lockless=true"
|
|
72
72
|
|
73
73
|
:JAVA_OPTS_SET
|
74
74
|
|
75
|
-
set "JAVA_OPTS=%JAVA_OPTS% -Xss2048k -Djruby.compile.invokedynamic=false %APPEND_JAVA_OPTS%"
|
75
|
+
set "JAVA_OPTS=%JAVA_OPTS% -Xss2048k -Djruby.compile.invokedynamic=false -Dorg.quartz.scheduler.skipUpdateCheck=true %APPEND_JAVA_OPTS%"
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
|
3
|
+
<!--
|
4
|
+
~ JBoss, Home of Professional Open Source.
|
5
|
+
~ Copyright 2010, Red Hat, Inc., and individual contributors
|
6
|
+
~ as indicated by the @author tags. See the copyright.txt file in the
|
7
|
+
~ distribution for a full listing of individual contributors.
|
8
|
+
~
|
9
|
+
~ This is free software; you can redistribute it and/or modify it
|
10
|
+
~ under the terms of the GNU Lesser General Public License as
|
11
|
+
~ published by the Free Software Foundation; either version 2.1 of
|
12
|
+
~ the License, or (at your option) any later version.
|
13
|
+
~
|
14
|
+
~ This software is distributed in the hope that it will be useful,
|
15
|
+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
~ Lesser General Public License for more details.
|
18
|
+
~
|
19
|
+
~ You should have received a copy of the GNU Lesser General Public
|
20
|
+
~ License along with this software; if not, write to the Free
|
21
|
+
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
22
|
+
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
23
|
+
-->
|
24
|
+
|
25
|
+
<module xmlns="urn:jboss:module:1.0" name="org.projectodd.polyglot.cache">
|
26
|
+
|
27
|
+
<resources>
|
28
|
+
<resource-root path="polyglot-cache.jar"/>
|
29
|
+
</resources>
|
30
|
+
|
31
|
+
<dependencies>
|
32
|
+
<module name="javax.api"/>
|
33
|
+
<module name="javax.servlet.api"/>
|
34
|
+
<module name="org.jboss.staxmapper"/>
|
35
|
+
<module name="org.jboss.as.controller"/>
|
36
|
+
<module name="org.jboss.as.ee"/>
|
37
|
+
<module name="org.jboss.as.server"/>
|
38
|
+
<module name="org.jboss.modules"/>
|
39
|
+
<module name="org.jboss.msc"/>
|
40
|
+
<module name="org.jboss.logging"/>
|
41
|
+
<module name="org.jboss.vfs"/>
|
42
|
+
<module name="org.jboss.metadata"/>
|
43
|
+
<module name="org.jboss.as.web"/>
|
44
|
+
<module name="org.jboss.as.clustering.jgroups"/>
|
45
|
+
<module name="org.slf4j"/>
|
46
|
+
|
47
|
+
<!-- Infinispan-requirements -->
|
48
|
+
<module name="org.infinispan" services="import"/>
|
49
|
+
<module name="javax.transaction.api"/>
|
50
|
+
<module name="javax.xml.bind.api"/>
|
51
|
+
<module name="org.apache.xerces" services="import"/>
|
52
|
+
<module name="org.jboss.marshalling"/>
|
53
|
+
<module name="org.jboss.marshalling.river" services="import"/>
|
54
|
+
<module name="org.jgroups" optional="true"/>
|
55
|
+
<module name="org.projectodd.polyglot.core"/>
|
56
|
+
</dependencies>
|
57
|
+
</module>
|
58
|
+
|
Binary file
|
@@ -0,0 +1,53 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
|
3
|
+
<!--
|
4
|
+
~ JBoss, Home of Professional Open Source.
|
5
|
+
~ Copyright 2010, Red Hat, Inc., and individual contributors
|
6
|
+
~ as indicated by the @author tags. See the copyright.txt file in the
|
7
|
+
~ distribution for a full listing of individual contributors.
|
8
|
+
~
|
9
|
+
~ This is free software; you can redistribute it and/or modify it
|
10
|
+
~ under the terms of the GNU Lesser General Public License as
|
11
|
+
~ published by the Free Software Foundation; either version 2.1 of
|
12
|
+
~ the License, or (at your option) any later version.
|
13
|
+
~
|
14
|
+
~ This software is distributed in the hope that it will be useful,
|
15
|
+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
~ Lesser General Public License for more details.
|
18
|
+
~
|
19
|
+
~ You should have received a copy of the GNU Lesser General Public
|
20
|
+
~ License along with this software; if not, write to the Free
|
21
|
+
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
22
|
+
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
23
|
+
-->
|
24
|
+
|
25
|
+
<module xmlns="urn:jboss:module:1.0" name="org.projectodd.polyglot.core">
|
26
|
+
|
27
|
+
<resources>
|
28
|
+
<resource-root path="polyglot-core.jar"/>
|
29
|
+
</resources>
|
30
|
+
|
31
|
+
<dependencies>
|
32
|
+
<module name="javax.api"/>
|
33
|
+
<module name="javax.transaction.api"/>
|
34
|
+
<module name="javax.servlet.api"/>
|
35
|
+
<module name="org.apache.commons.codec"/>
|
36
|
+
<module name="org.apache.commons.lang"/>
|
37
|
+
<module name="org.jboss.staxmapper"/>
|
38
|
+
<module name="org.jboss.as.controller"/>
|
39
|
+
<module name="org.jboss.as.ee"/>
|
40
|
+
<module name="org.jboss.as.jmx"/>
|
41
|
+
<module name="org.jboss.as.server"/>
|
42
|
+
<module name="org.jboss.as.transactions"/>
|
43
|
+
<module name="org.jboss.as.web"/>
|
44
|
+
<module name="org.jboss.as.network"/>
|
45
|
+
<module name="org.jboss.as.clustering.jgroups"/>
|
46
|
+
<module name="org.jboss.modules"/>
|
47
|
+
<module name="org.jboss.msc"/>
|
48
|
+
<module name="org.jboss.logging"/>
|
49
|
+
<module name="org.jboss.vfs"/>
|
50
|
+
<module name="org.jboss.netty"/>
|
51
|
+
</dependencies>
|
52
|
+
</module>
|
53
|
+
|
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
|
3
|
+
<!--
|
4
|
+
~ JBoss, Home of Professional Open Source.
|
5
|
+
~ Copyright 2010, Red Hat, Inc., and individual contributors
|
6
|
+
~ as indicated by the @author tags. See the copyright.txt file in the
|
7
|
+
~ distribution for a full listing of individual contributors.
|
8
|
+
~
|
9
|
+
~ This is free software; you can redistribute it and/or modify it
|
10
|
+
~ under the terms of the GNU Lesser General Public License as
|
11
|
+
~ published by the Free Software Foundation; either version 2.1 of
|
12
|
+
~ the License, or (at your option) any later version.
|
13
|
+
~
|
14
|
+
~ This software is distributed in the hope that it will be useful,
|
15
|
+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
~ Lesser General Public License for more details.
|
18
|
+
~
|
19
|
+
~ You should have received a copy of the GNU Lesser General Public
|
20
|
+
~ License along with this software; if not, write to the Free
|
21
|
+
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
22
|
+
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
23
|
+
-->
|
24
|
+
|
25
|
+
<module xmlns="urn:jboss:module:1.0" name="org.projectodd.polyglot.hasingleton">
|
26
|
+
|
27
|
+
<resources>
|
28
|
+
<resource-root path="polyglot-hasingleton.jar"/>
|
29
|
+
</resources>
|
30
|
+
|
31
|
+
<dependencies>
|
32
|
+
<module name="org.jboss.staxmapper"/>
|
33
|
+
<module name="org.jboss.as.controller"/>
|
34
|
+
<module name="org.jboss.as.server"/>
|
35
|
+
<module name="org.jboss.as.network"/>
|
36
|
+
<module name="org.jboss.as.clustering.api"/>
|
37
|
+
<module name="org.jboss.as.clustering.jgroups"/>
|
38
|
+
<module name="org.jboss.as.clustering.impl"/>
|
39
|
+
<module name="org.jboss.modules"/>
|
40
|
+
<module name="org.jboss.msc"/>
|
41
|
+
<module name="org.jboss.logging"/>
|
42
|
+
<module name="org.jboss.vfs"/>
|
43
|
+
<module name="org.jgroups"/>
|
44
|
+
<module name="org.projectodd.polyglot.core"/>
|
45
|
+
</dependencies>
|
46
|
+
</module>
|
47
|
+
|
Binary file
|
@@ -0,0 +1,62 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
|
3
|
+
<!--
|
4
|
+
~ JBoss, Home of Professional Open Source.
|
5
|
+
~ Copyright 2010, Red Hat, Inc., and individual contributors
|
6
|
+
~ as indicated by the @author tags. See the copyright.txt file in the
|
7
|
+
~ distribution for a full listing of individual contributors.
|
8
|
+
~
|
9
|
+
~ This is free software; you can redistribute it and/or modify it
|
10
|
+
~ under the terms of the GNU Lesser General Public License as
|
11
|
+
~ published by the Free Software Foundation; either version 2.1 of
|
12
|
+
~ the License, or (at your option) any later version.
|
13
|
+
~
|
14
|
+
~ This software is distributed in the hope that it will be useful,
|
15
|
+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
~ Lesser General Public License for more details.
|
18
|
+
~
|
19
|
+
~ You should have received a copy of the GNU Lesser General Public
|
20
|
+
~ License along with this software; if not, write to the Free
|
21
|
+
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
22
|
+
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
23
|
+
-->
|
24
|
+
|
25
|
+
<module xmlns="urn:jboss:module:1.0" name="org.projectodd.polyglot.stomp">
|
26
|
+
|
27
|
+
<resources>
|
28
|
+
<resource-root path="polyglot-stomp.jar"/>
|
29
|
+
|
30
|
+
<resource-root path="stilts-stomp-api.jar"/>
|
31
|
+
<resource-root path="stilts-stomp-common.jar"/>
|
32
|
+
<resource-root path="stilts-stomp-server-core.jar"/>
|
33
|
+
<resource-root path="stilts-stomp-server-spi.jar"/>
|
34
|
+
<resource-root path="stilts-conduit-server-core.jar"/>
|
35
|
+
<resource-root path="stilts-conduit-server-spi.jar"/>
|
36
|
+
<resource-root path="stilts-stomplet-server-core.jar"/>
|
37
|
+
<resource-root path="stilts-stomplet-api.jar"/>
|
38
|
+
</resources>
|
39
|
+
|
40
|
+
<dependencies>
|
41
|
+
<module name="javax.transaction.api"/>
|
42
|
+
<module name="javax.servlet.api"/>
|
43
|
+
<module name="org.apache.commons.codec"/>
|
44
|
+
<module name="org.apache.commons.lang"/>
|
45
|
+
<module name="org.jboss.staxmapper"/>
|
46
|
+
<module name="org.jboss.as.controller"/>
|
47
|
+
<module name="org.jboss.as.ee"/>
|
48
|
+
<module name="org.jboss.as.jmx"/>
|
49
|
+
<module name="org.jboss.as.server"/>
|
50
|
+
<module name="org.jboss.as.transactions"/>
|
51
|
+
<module name="org.jboss.as.web"/>
|
52
|
+
<module name="org.jboss.as.network"/>
|
53
|
+
<module name="org.jboss.modules"/>
|
54
|
+
<module name="org.jboss.msc"/>
|
55
|
+
<module name="org.jboss.logging"/>
|
56
|
+
<module name="org.jboss.vfs"/>
|
57
|
+
<module name="org.jboss.netty"/>
|
58
|
+
<module name="org.projectodd.polyglot.core"/>
|
59
|
+
<module name="org.projectodd.polyglot.web"/>
|
60
|
+
</dependencies>
|
61
|
+
</module>
|
62
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
standard-sockets:stomp:8675
|
@@ -0,0 +1 @@
|
|
1
|
+
<subsystem xmlns='urn:jboss:domain:polyglot-stomp:1.0' socket-binding="stomp"/>
|
@@ -0,0 +1,51 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
|
3
|
+
<!--
|
4
|
+
~ JBoss, Home of Professional Open Source.
|
5
|
+
~ Copyright 2010, Red Hat, Inc., and individual contributors
|
6
|
+
~ as indicated by the @author tags. See the copyright.txt file in the
|
7
|
+
~ distribution for a full listing of individual contributors.
|
8
|
+
~
|
9
|
+
~ This is free software; you can redistribute it and/or modify it
|
10
|
+
~ under the terms of the GNU Lesser General Public License as
|
11
|
+
~ published by the Free Software Foundation; either version 2.1 of
|
12
|
+
~ the License, or (at your option) any later version.
|
13
|
+
~
|
14
|
+
~ This software is distributed in the hope that it will be useful,
|
15
|
+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
~ Lesser General Public License for more details.
|
18
|
+
~
|
19
|
+
~ You should have received a copy of the GNU Lesser General Public
|
20
|
+
~ License along with this software; if not, write to the Free
|
21
|
+
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
22
|
+
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
23
|
+
-->
|
24
|
+
|
25
|
+
<module xmlns="urn:jboss:module:1.0" name="org.projectodd.polyglot.web">
|
26
|
+
|
27
|
+
<resources>
|
28
|
+
<resource-root path="polyglot-web.jar"/>
|
29
|
+
</resources>
|
30
|
+
|
31
|
+
<dependencies>
|
32
|
+
<module name="javax.transaction.api"/>
|
33
|
+
<module name="javax.servlet.api"/>
|
34
|
+
<module name="org.apache.commons.codec"/>
|
35
|
+
<module name="org.apache.commons.lang"/>
|
36
|
+
<module name="org.jboss.staxmapper"/>
|
37
|
+
<module name="org.jboss.as.controller"/>
|
38
|
+
<module name="org.jboss.as.ee"/>
|
39
|
+
<module name="org.jboss.as.jmx"/>
|
40
|
+
<module name="org.jboss.as.server"/>
|
41
|
+
<module name="org.jboss.as.transactions"/>
|
42
|
+
<module name="org.jboss.as.web"/>
|
43
|
+
<module name="org.jboss.as.network"/>
|
44
|
+
<module name="org.jboss.modules"/>
|
45
|
+
<module name="org.jboss.msc"/>
|
46
|
+
<module name="org.jboss.logging"/>
|
47
|
+
<module name="org.jboss.vfs"/>
|
48
|
+
<module name="org.projectodd.polyglot.core"/>
|
49
|
+
</dependencies>
|
50
|
+
</module>
|
51
|
+
|
Binary file
|
Binary file
|
@@ -23,7 +23,6 @@
|
|
23
23
|
<module xmlns='urn:jboss:module:1.0' name='org.torquebox.core'>
|
24
24
|
<resources>
|
25
25
|
<resource-root path='torquebox-core.jar'/>
|
26
|
-
<resource-root path='polyglot-core.jar'/>
|
27
26
|
<resource-root path='yaml-schema.jar'/>
|
28
27
|
</resources>
|
29
28
|
<exports>
|
@@ -65,6 +64,7 @@
|
|
65
64
|
<module name='org.jboss.logmanager'/>
|
66
65
|
<module name='org.jboss.stdio'/>
|
67
66
|
<module name='org.jboss.vfs'/>
|
67
|
+
<module name='org.projectodd.polyglot.core'/>
|
68
68
|
<!--
|
69
69
|
<module name="org.jboss.threads"/>
|
70
70
|
<module name="org.jboss.as.deployment-repository"/>
|
Binary file
|
Binary file
|
@@ -49,6 +49,8 @@
|
|
49
49
|
<module name="org.jboss.metadata"/>
|
50
50
|
<module name="org.jboss.as.web"/>
|
51
51
|
<module name="org.jboss.as.clustering.jgroups"/>
|
52
|
+
<module name="org.projectodd.polyglot.core"/>
|
53
|
+
<module name="org.projectodd.polyglot.web"/>
|
52
54
|
<module name="org.torquebox.core"/>
|
53
55
|
<module name="org.slf4j"/>
|
54
56
|
|
Binary file
|
Binary file
|
@@ -33,13 +33,13 @@
|
|
33
33
|
<extension module='org.jboss.as.weld'/>
|
34
34
|
<extension module='org.torquebox.bootstrap'/>
|
35
35
|
<extension module='org.torquebox.core'/>
|
36
|
+
<extension module='org.torquebox.messaging'/>
|
36
37
|
<extension module='org.torquebox.cdi'/>
|
38
|
+
<extension module='org.torquebox.services'/>
|
37
39
|
<extension module='org.torquebox.jobs'/>
|
38
|
-
<extension module='org.torquebox.messaging'/>
|
39
40
|
<extension module='org.torquebox.security'/>
|
40
|
-
<extension module='org.torquebox.services'/>
|
41
|
-
<extension module='org.torquebox.stomp'/>
|
42
41
|
<extension module='org.torquebox.web'/>
|
42
|
+
<extension module='org.torquebox.stomp'/>
|
43
43
|
<extension module='org.projectodd.polyglot.hasingleton'/>
|
44
44
|
<extension module='org.projectodd.polyglot.cache'/>
|
45
45
|
<extension module='org.projectodd.polyglot.stomp'/>
|
@@ -560,13 +560,13 @@
|
|
560
560
|
<subsystem xmlns='urn:jboss:domain:weld:1.0'/>
|
561
561
|
<subsystem xmlns='urn:jboss:domain:torquebox-bootstrap:1.0'/>
|
562
562
|
<subsystem xmlns='urn:jboss:domain:torquebox-core:1.0'/>
|
563
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-messaging:1.0'/>
|
563
564
|
<subsystem xmlns='urn:jboss:domain:torquebox-cdi:1.0'/>
|
565
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-services:1.0'/>
|
564
566
|
<subsystem xmlns='urn:jboss:domain:torquebox-jobs:1.0'/>
|
565
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-messaging:1.0'/>
|
566
567
|
<subsystem xmlns='urn:jboss:domain:torquebox-security:1.0'/>
|
567
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-services:1.0'/>
|
568
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-stomp:1.0'/>
|
569
568
|
<subsystem xmlns='urn:jboss:domain:torquebox-web:1.0'/>
|
569
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-stomp:1.0'/>
|
570
570
|
<subsystem xmlns='urn:jboss:domain:polyglot-hasingleton:1.0'/>
|
571
571
|
<subsystem xmlns='urn:jboss:domain:polyglot-cache:1.0'/>
|
572
572
|
<subsystem xmlns='urn:jboss:domain:polyglot-stomp:1.0' socket-binding='stomp'/>
|
@@ -592,7 +592,7 @@
|
|
592
592
|
<socket-binding name='management-http' interface='management' port='${jboss.management.http.port:9990}'/>
|
593
593
|
<socket-binding name='management-https' interface='management' port='${jboss.management.https.port:9443}'/>
|
594
594
|
<socket-binding name='ajp' port='8009'/>
|
595
|
-
<socket-binding name='http' port='8080'/>
|
595
|
+
<socket-binding name='http' port='${http.port:8080}'/>
|
596
596
|
<socket-binding name='https' port='8443'/>
|
597
597
|
<socket-binding name='jacorb' interface='unsecure' port='3528'/>
|
598
598
|
<socket-binding name='jacorb-ssl' interface='unsecure' port='3529'/>
|
@@ -31,13 +31,13 @@
|
|
31
31
|
<extension module='org.jboss.as.weld'/>
|
32
32
|
<extension module='org.torquebox.bootstrap'/>
|
33
33
|
<extension module='org.torquebox.core'/>
|
34
|
+
<extension module='org.torquebox.messaging'/>
|
34
35
|
<extension module='org.torquebox.cdi'/>
|
36
|
+
<extension module='org.torquebox.services'/>
|
35
37
|
<extension module='org.torquebox.jobs'/>
|
36
|
-
<extension module='org.torquebox.messaging'/>
|
37
38
|
<extension module='org.torquebox.security'/>
|
38
|
-
<extension module='org.torquebox.services'/>
|
39
|
-
<extension module='org.torquebox.stomp'/>
|
40
39
|
<extension module='org.torquebox.web'/>
|
40
|
+
<extension module='org.torquebox.stomp'/>
|
41
41
|
<extension module='org.projectodd.polyglot.hasingleton'/>
|
42
42
|
<extension module='org.projectodd.polyglot.cache'/>
|
43
43
|
<extension module='org.projectodd.polyglot.stomp'/>
|
@@ -443,13 +443,13 @@
|
|
443
443
|
<subsystem xmlns='urn:jboss:domain:weld:1.0'/>
|
444
444
|
<subsystem xmlns='urn:jboss:domain:torquebox-bootstrap:1.0'/>
|
445
445
|
<subsystem xmlns='urn:jboss:domain:torquebox-core:1.0'/>
|
446
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-messaging:1.0'/>
|
446
447
|
<subsystem xmlns='urn:jboss:domain:torquebox-cdi:1.0'/>
|
448
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-services:1.0'/>
|
447
449
|
<subsystem xmlns='urn:jboss:domain:torquebox-jobs:1.0'/>
|
448
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-messaging:1.0'/>
|
449
450
|
<subsystem xmlns='urn:jboss:domain:torquebox-security:1.0'/>
|
450
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-services:1.0'/>
|
451
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-stomp:1.0'/>
|
452
451
|
<subsystem xmlns='urn:jboss:domain:torquebox-web:1.0'/>
|
452
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-stomp:1.0'/>
|
453
453
|
<subsystem xmlns='urn:jboss:domain:polyglot-hasingleton:1.0'/>
|
454
454
|
<subsystem xmlns='urn:jboss:domain:polyglot-cache:1.0'/>
|
455
455
|
<subsystem xmlns='urn:jboss:domain:polyglot-stomp:1.0' socket-binding='stomp'/>
|
@@ -475,7 +475,7 @@
|
|
475
475
|
<socket-binding name='management-http' interface='management' port='${jboss.management.http.port:9990}'/>
|
476
476
|
<socket-binding name='management-https' interface='management' port='${jboss.management.https.port:9443}'/>
|
477
477
|
<socket-binding name='ajp' port='8009'/>
|
478
|
-
<socket-binding name='http' port='8080'/>
|
478
|
+
<socket-binding name='http' port='${http.port:8080}'/>
|
479
479
|
<socket-binding name='https' port='8443'/>
|
480
480
|
<socket-binding name='jacorb' interface='unsecure' port='3528'/>
|
481
481
|
<socket-binding name='jacorb-ssl' interface='unsecure' port='3529'/>
|
@@ -33,13 +33,13 @@
|
|
33
33
|
<extension module='org.jboss.as.weld'/>
|
34
34
|
<extension module='org.torquebox.bootstrap'/>
|
35
35
|
<extension module='org.torquebox.core'/>
|
36
|
+
<extension module='org.torquebox.messaging'/>
|
36
37
|
<extension module='org.torquebox.cdi'/>
|
38
|
+
<extension module='org.torquebox.services'/>
|
37
39
|
<extension module='org.torquebox.jobs'/>
|
38
|
-
<extension module='org.torquebox.messaging'/>
|
39
40
|
<extension module='org.torquebox.security'/>
|
40
|
-
<extension module='org.torquebox.services'/>
|
41
|
-
<extension module='org.torquebox.stomp'/>
|
42
41
|
<extension module='org.torquebox.web'/>
|
42
|
+
<extension module='org.torquebox.stomp'/>
|
43
43
|
<extension module='org.projectodd.polyglot.hasingleton'/>
|
44
44
|
<extension module='org.projectodd.polyglot.cache'/>
|
45
45
|
<extension module='org.projectodd.polyglot.stomp'/>
|
@@ -560,13 +560,13 @@
|
|
560
560
|
<subsystem xmlns='urn:jboss:domain:weld:1.0'/>
|
561
561
|
<subsystem xmlns='urn:jboss:domain:torquebox-bootstrap:1.0'/>
|
562
562
|
<subsystem xmlns='urn:jboss:domain:torquebox-core:1.0'/>
|
563
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-messaging:1.0'/>
|
563
564
|
<subsystem xmlns='urn:jboss:domain:torquebox-cdi:1.0'/>
|
565
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-services:1.0'/>
|
564
566
|
<subsystem xmlns='urn:jboss:domain:torquebox-jobs:1.0'/>
|
565
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-messaging:1.0'/>
|
566
567
|
<subsystem xmlns='urn:jboss:domain:torquebox-security:1.0'/>
|
567
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-services:1.0'/>
|
568
|
-
<subsystem xmlns='urn:jboss:domain:torquebox-stomp:1.0'/>
|
569
568
|
<subsystem xmlns='urn:jboss:domain:torquebox-web:1.0'/>
|
569
|
+
<subsystem xmlns='urn:jboss:domain:torquebox-stomp:1.0'/>
|
570
570
|
<subsystem xmlns='urn:jboss:domain:polyglot-hasingleton:1.0'/>
|
571
571
|
<subsystem xmlns='urn:jboss:domain:polyglot-cache:1.0'/>
|
572
572
|
<subsystem xmlns='urn:jboss:domain:polyglot-stomp:1.0' socket-binding='stomp'/>
|
@@ -592,7 +592,7 @@
|
|
592
592
|
<socket-binding name='management-http' interface='management' port='${jboss.management.http.port:9990}'/>
|
593
593
|
<socket-binding name='management-https' interface='management' port='${jboss.management.https.port:9443}'/>
|
594
594
|
<socket-binding name='ajp' port='8009'/>
|
595
|
-
<socket-binding name='http' port='8080'/>
|
595
|
+
<socket-binding name='http' port='${http.port:8080}'/>
|
596
596
|
<socket-binding name='https' port='8443'/>
|
597
597
|
<socket-binding name='jacorb' interface='unsecure' port='3528'/>
|
598
598
|
<socket-binding name='jacorb-ssl' interface='unsecure' port='3529'/>
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: torquebox-lite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.2.
|
5
|
+
version: 0.2.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- The TorqueBox Team
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date:
|
13
|
+
date: 2013-06-17 00:00:00 -04:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
requirements:
|
22
22
|
- - "="
|
23
23
|
- !ruby/object:Gem::Version
|
24
|
-
version: 2.2
|
24
|
+
version: 2.3.2
|
25
25
|
type: :runtime
|
26
26
|
version_requirements: *id001
|
27
27
|
- !ruby/object:Gem::Dependency
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
requirements:
|
33
33
|
- - "="
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 2.2
|
35
|
+
version: 2.3.2
|
36
36
|
type: :runtime
|
37
37
|
version_requirements: *id002
|
38
38
|
- !ruby/object:Gem::Dependency
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
requirements:
|
44
44
|
- - "="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 2.2
|
46
|
+
version: 2.3.2
|
47
47
|
type: :runtime
|
48
48
|
version_requirements: *id003
|
49
49
|
- !ruby/object:Gem::Dependency
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
requirements:
|
55
55
|
- - "="
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version: 2.2
|
57
|
+
version: 2.3.2
|
58
58
|
type: :runtime
|
59
59
|
version_requirements: *id004
|
60
60
|
- !ruby/object:Gem::Dependency
|
@@ -594,6 +594,28 @@ files:
|
|
594
594
|
- jboss/modules/org/picketbox/main/picketbox-commons-1.0.0.final.jar.index
|
595
595
|
- jboss/modules/org/picketbox/main/picketbox-infinispan-4.0.14.Final.jar
|
596
596
|
- jboss/modules/org/picketbox/main/picketbox-infinispan-4.0.14.Final.jar.index
|
597
|
+
- jboss/modules/org/projectodd/polyglot/cache/main/module.xml
|
598
|
+
- jboss/modules/org/projectodd/polyglot/cache/main/polyglot-cache.jar
|
599
|
+
- jboss/modules/org/projectodd/polyglot/core/main/module.xml
|
600
|
+
- jboss/modules/org/projectodd/polyglot/core/main/polyglot-core.jar
|
601
|
+
- jboss/modules/org/projectodd/polyglot/hasingleton/main/module.xml
|
602
|
+
- jboss/modules/org/projectodd/polyglot/hasingleton/main/polyglot-hasingleton.jar
|
603
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/jboss-logmanager.jar
|
604
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/module.xml
|
605
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/netty.jar
|
606
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/polyglot-stomp.jar
|
607
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/stilts-conduit-server-core.jar
|
608
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/stilts-conduit-server-spi.jar
|
609
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomp-api.jar
|
610
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomp-common.jar
|
611
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomp-server-core.jar
|
612
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomp-server-spi.jar
|
613
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomplet-api.jar
|
614
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/stilts-stomplet-server-core.jar
|
615
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/subsystem/socket-binding.conf
|
616
|
+
- jboss/modules/org/projectodd/polyglot/stomp/main/subsystem/subsystem.xml
|
617
|
+
- jboss/modules/org/projectodd/polyglot/web/main/module.xml
|
618
|
+
- jboss/modules/org/projectodd/polyglot/web/main/polyglot-web.jar
|
597
619
|
- jboss/modules/org/scannotation/scannotation/main/module.xml
|
598
620
|
- jboss/modules/org/scannotation/scannotation/main/scannotation-1.0.2.jar
|
599
621
|
- jboss/modules/org/scannotation/scannotation/main/scannotation-1.0.2.jar.index
|