Re: T5: Howto add additional packages with components

2007-02-23 Thread Dennis Kempin
Thanks Howard, I got it working. The components cant be in the standard location because I have a jar file with common components for a few small tapestry applications. Well I could put them into the same package but I think its a little bit confusing when one package is filled from different loca

Re: T5: Howto add additional packages with components

2007-02-22 Thread Howard Lewis Ship
Contribute to the tapestry.ComponentClassResolver service's configuration. The contribution for the core library is: public static void contributeComponentClassResolver(Configuration configuration) { configuration.add(new LibraryMapping("core", "org.apache.tapestry.corelib")); }

T5: Howto add additional packages with components

2007-02-22 Thread Dennis Kempin
Hello, I want to make a bunch of components available to my application, but these are not inside the [root].components package. How can i add additonal packages to the search path for components? thanks, Dennis - To unsubscri