Re: Wicket plugin architecture

2013-07-17 Thread Decebal Suiu
Hi If anybody is interested, Wicket Plugin https://github.com/decebals/wicket-plugin is now available on github. Best regards, Decebal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-plugin-architecture-tp4652305p4660307.html Sent from the Users forum

RE: Wicket plugin architecture

2012-10-18 Thread Michal Wegrzyn
? Best regards, Michal Wegrzyn -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Tuesday, September 25, 2012 10:48 To: users@wicket.apache.org Subject: Re: Wicket plugin architecture Hi, The simplest way is to use Wicket's org.apache.wicket.IInitializer

Re: Wicket plugin architecture

2012-10-18 Thread Martin Grigorov
Grigorov [mailto:mgrigo...@apache.org] Sent: Tuesday, September 25, 2012 10:48 To: users@wicket.apache.org Subject: Re: Wicket plugin architecture Hi, The simplest way is to use Wicket's org.apache.wicket.IInitializer class. Just create a Jar (the plugin) that contains the plugin classes

RE: Wicket plugin architecture

2012-10-18 Thread Michal Wegrzyn
[mailto:mgrigo...@apache.org] Sent: Thursday, October 18, 2012 16:24 To: users@wicket.apache.org Subject: Re: Wicket plugin architecture On Thu, Oct 18, 2012 at 4:21 PM, Michal Wegrzyn michal.wegr...@onior.com wrote: Thank you all for suggestions. Finally I have used Wicket's

Re: Wicket plugin architecture

2012-10-18 Thread Bas Gooren
Wegrzyn -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Thursday, October 18, 2012 16:24 To: users@wicket.apache.org Subject: Re: Wicket plugin architecture On Thu, Oct 18, 2012 at 4:21 PM, Michal Wegrzyn michal.wegr...@onior.com wrote: Thank you all

RE: Wicket plugin architecture

2012-10-18 Thread Decebal Suiu
over the solution chosen by you. A demo will be also available. I will come with more information in the next post. Any suggestion or idea is welcome. Best regards, Decebal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-plugin-architecture

Wicket plugin architecture

2012-09-25 Thread Michal Wegrzyn
Dear developers, I need to prepare plugin architecture for a Wicket based project. I've found that open source Hippo CMS ( http://svn.onehippo.org/repos/hippo/ ) does it, but I am curious if there are any other projects that do such a thing? Do you maybe know this kind of projects or

Re: Wicket plugin architecture

2012-09-25 Thread Martin Grigorov
Hi, The simplest way is to use Wicket's org.apache.wicket.IInitializer class. Just create a Jar (the plugin) that contains the plugin classes and wicket.properties in the root package and a line inside: initializer=com.example.MyInitializer MyInitializer#init(Application) will be called just

Re: Wicket plugin architecture

2012-09-25 Thread Dan Simko
Hi, You can also look at https://github.com/brix-cms/brix-cms. It is much simpler than hippo. Best regards, Dan On Tue, Sep 25, 2012 at 10:48 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, The simplest way is to use Wicket's org.apache.wicket.IInitializer class. Just create a Jar (the

Re: Wicket plugin architecture

2012-09-25 Thread Decebal Suiu
-plugin-architecture-tp4652305p4652321.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket plugin architecture

2012-09-25 Thread Decebal Suiu
to adapt jenkins plugin system to wicket but I don't know how big is this task. It's anybody here that can explains us how the plugin system is implemented in brixcms? Best regards, Decebal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-plugin-architecture