[xwiki-devs] xwiki-contrib-websocket -- I'd like to move it to contrib and release into maven.xwiki.org
Hi, I just finished working on XWiki/WebSocket integration which allows components which implement XWikiWebSocketHandler and they will be called when a user creates a WebSocket connection to the wiki. Now I'd like some permission and guidance on getting this published as an extension, unfortunately I was a little bit too modular so I can't just upload a .jar and I will have to publish this in maven.xwiki.org What do people think about transferring this to xwiki-contrib and can anyone give me some advice about publishing an extension through maven? For reference, this is the code: https://github.com/cjdelisle/xwiki-contrib-websocket Thanks, Caleb
Hi Caleb On 13 Jan 2014 at 18:17:29, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
Hi,
I just finished working on XWiki/WebSocket integration which allows components which implement XWikiWebSocketHandler and they will be called when a user creates a WebSocket connection to the wiki.
cool
Now I'd like some permission and guidance on getting this published as an extension, unfortunately I was a little bit too modular so I can't just upload a .jar and I will have to publish this in maven.xwiki.org
How do you install your extension if you have to do it manually?
What do people think about transferring this to xwiki-contrib
+1
and can anyone give me some advice about publishing an extension through maven?
For reference, this is the code: https://github.com/cjdelisle/xwiki-contrib-websocket
Thanks -Vincent
Thanks, Caleb
On 01/13/2014 06:33 PM, [email protected] wrote:
Hi Caleb
On 13 Jan 2014 at 18:17:29, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
Hi,
I just finished working on XWiki/WebSocket integration which allows components which implement XWikiWebSocketHandler and they will be called when a user creates a WebSocket connection to the wiki.
cool
Now I'd like some permission and guidance on getting this published as an extension, unfortunately I was a little bit too modular so I can't just upload a .jar and I will have to publish this in maven.xwiki.org
How do you install your extension if you have to do it manually?
mvn clean install && find ./ -name '*.jar' -exec cp {} ${XWIKI_HOME}/webapps/xwiki/WEB-INF/lib/ \; I probably ought to document that but hopefully I can get it in the EM so it's not needed. Thanks, Caleb
What do people think about transferring this to xwiki-contrib
+1
and can anyone give me some advice about publishing an extension through maven?
For reference, this is the code: https://github.com/cjdelisle/xwiki-contrib-websocket
Thanks -Vincent
Thanks, Caleb
_______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs
On 13 Jan 2014 at 18:53:59, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
On 01/13/2014 06:33 PM, [email protected] wrote:
Hi Caleb
On 13 Jan 2014 at 18:17:29, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
Hi,
I just finished working on XWiki/WebSocket integration which allows components which implement XWikiWebSocketHandler and they will be called when a user creates a WebSocket connection to the wiki.
cool
Now I'd like some permission and guidance on getting this published as an extension, unfortunately I was a little bit too modular so I can't just upload a .jar and I will have to publish this in maven.xwiki.org
How do you install your extension if you have to do it manually?
mvn clean install && find ./ -name '*.jar' -exec cp {} ${XWIKI_HOME}/webapps/xwiki/WEB-INF/lib/ \;
So it means it’s just a JAR... Why then did you say “I was a little bit too modular so I can't just upload a .jar”? If it’s just JAR it’s very simple to publish on e.x.o and have users install it using the EM. Thanks -Vincent
I probably ought to document that but hopefully I can get it in the EM so it's not needed.
Thanks, Caleb
What do people think about transferring this to xwiki-contrib
+1
and can anyone give me some advice about publishing an extension through maven?
For reference, this is the code: https://github.com/cjdelisle/xwiki-contrib-websocket
Thanks -Vincent
Thanks, Caleb
Extension Manager supports dependencies so all you have to do is publish all that on maven repository and have one of them that you import on http://extensions.xwiki.org depend on the others. On Mon, Jan 13, 2014 at 6:59 PM, [email protected] <[email protected]> wrote:
On 13 Jan 2014 at 18:53:59, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
On 01/13/2014 06:33 PM, [email protected] wrote:
Hi Caleb
On 13 Jan 2014 at 18:17:29, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
Hi,
I just finished working on XWiki/WebSocket integration which allows components which implement XWikiWebSocketHandler and they will be called when a user creates a WebSocket connection to the wiki.
cool
Now I'd like some permission and guidance on getting this published as an extension, unfortunately I was a little bit too modular so I can't just upload a .jar and I will have to publish this in maven.xwiki.org
How do you install your extension if you have to do it manually?
mvn clean install && find ./ -name '*.jar' -exec cp {} ${XWIKI_HOME}/webapps/xwiki/WEB-INF/lib/ \;
So it means it’s just a JAR... Why then did you say “I was a little bit too modular so I can't just upload a .jar”? If it’s just JAR it’s very simple to publish on e.x.o and have users install it using the EM.
Thanks -Vincent
I probably ought to document that but hopefully I can get it in the EM so it's not needed.
Thanks, Caleb
What do people think about transferring this to xwiki-contrib
+1
and can anyone give me some advice about publishing an extension through maven?
For reference, this is the code: https://github.com/cjdelisle/xwiki-contrib-websocket
Thanks -Vincent
Thanks, Caleb
devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs
-- Thomas Mortagne
No it's actually 2 jars which is the problem. Thanks, Caleb On 01/13/2014 06:59 PM, [email protected] wrote:
On 13 Jan 2014 at 18:53:59, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
On 01/13/2014 06:33 PM, [email protected] wrote:
Hi Caleb
On 13 Jan 2014 at 18:17:29, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
Hi,
I just finished working on XWiki/WebSocket integration which allows components which implement XWikiWebSocketHandler and they will be called when a user creates a WebSocket connection to the wiki.
cool
Now I'd like some permission and guidance on getting this published as an extension, unfortunately I was a little bit too modular so I can't just upload a .jar and I will have to publish this in maven.xwiki.org
How do you install your extension if you have to do it manually?
mvn clean install && find ./ -name '*.jar' -exec cp {} ${XWIKI_HOME}/webapps/xwiki/WEB-INF/lib/ \;
So it means it’s just a JAR... Why then did you say “I was a little bit too modular so I can't just upload a .jar”? If it’s just JAR it’s very simple to publish on e.x.o and have users install it using the EM.
Thanks -Vincent
I probably ought to document that but hopefully I can get it in the EM so it's not needed.
Thanks, Caleb
What do people think about transferring this to xwiki-contrib
+1
and can anyone give me some advice about publishing an extension through maven?
For reference, this is the code: https://github.com/cjdelisle/xwiki-contrib-websocket
Thanks -Vincent
Thanks, Caleb
devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs
On 14 Jan 2014 at 10:16:05, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
No it's actually 2 jars which is the problem.
That’s not a problem! I guess one JAR is using the other one. Just publish both JARs in the xwiki repository (see http://contrib.xwiki.org) and then only import the topmost JAR on http://extensions.xwiki.org (for example) and document it (or import both JARs if you want/need to expose both). Thanks -Vincent
Thanks, Caleb
On 01/13/2014 06:59 PM, [email protected] wrote:
On 13 Jan 2014 at 18:53:59, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
On 01/13/2014 06:33 PM, [email protected] wrote:
Hi Caleb
On 13 Jan 2014 at 18:17:29, Caleb James DeLisle ([email protected](mailto://[email protected])) wrote:
Hi,
I just finished working on XWiki/WebSocket integration which allows components which implement XWikiWebSocketHandler and they will be called when a user creates a WebSocket connection to the wiki.
cool
Now I'd like some permission and guidance on getting this published as an extension, unfortunately I was a little bit too modular so I can't just upload a .jar and I will have to publish this in maven.xwiki.org
How do you install your extension if you have to do it manually?
mvn clean install && find ./ -name '*.jar' -exec cp {} ${XWIKI_HOME}/webapps/xwiki/WEB-INF/lib/ \;
So it means it’s just a JAR... Why then did you say “I was a little bit too modular so I can't just upload a .jar”? If it’s just JAR it’s very simple to publish on e.x.o and have users install it using the EM.
Thanks -Vincent
I probably ought to document that but hopefully I can get it in the EM so it's not needed.
Thanks, Caleb
What do people think about transferring this to xwiki-contrib
+1
and can anyone give me some advice about publishing an extension through maven?
For reference, this is the code: https://github.com/cjdelisle/xwiki-contrib-websocket
Thanks -Vincent
Thanks, Caleb
participants (3)
-
Caleb James DeLisle -
Thomas Mortagne -
vincent@massol.net