The .properties file is packed inside wicket-extensions.jar, not in his application.
I have no other ideas but to attach a remote debugger to org.apache.wicket.resource.loader.InitializerStringResourceLoader#loadStringResource(java.lang.Class<?>, java.lang.String, java.util.Locale, java.lang.String, java.lang.String) and set condition on the "key" parameter to be equal to the missing resource key. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Oct 1, 2014 at 5:55 PM, Andrew Geery <andrew.ge...@gmail.com> wrote: > As a sanity check, is the property file with the property > UploadProgressBar.starting > in the jar file? Perhaps it didn't get copied over by the Maven build > process into the jar but the IDE was properly copying it over... > > Andrew > > On Wed, Oct 1, 2014 at 11:38 AM, Garret Wilson <gar...@globalmentor.com> > wrote: > > > On 10/1/2014 12:33 PM, Martin Grigorov wrote: > > > >> Hi, > >> > >> Do you by chance manipulate the list of IStringResourceLoader's in > >> DEPLOYMENT mode ? > >> > > > > I don't think I touched anything related to IStringResourceLoader. The > > only thing I've done relating to modes is this: > > > > //turn on Wicket development mode if in debug mode > > final String wicketConfiguration = Debug.isDebug() ? "development" > : > > "deployment"; > > filterHolder.setInitParameter("configuration", > wicketConfiguration); > > > > In other words, in embedded Jetty, if we've started up specifying a debug > > mode (using a system variable), then I set the Wicket configuration to > > "development"; otherwise, I set it to "deployment". > > > > > > Garret > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > >