>>>>> "'Achim Nierbeck' via OPS4J" <
op...@googlegroups.com>:
> well pax construct, a main part of Pax Exam isn't needed any longer
> for pax Exam. Therefore it kind of got abandoned.
Too bad. It's really neat for quick turnaround in development of
eg. pax web applications.
> But 7 Month ago a newer release has been made for it.
Hm ok, I'll try to find the version number and update my POM.
I tried updating the maven-pax-plugin from 1.5 to 1.6 but version 1.6
wasn't found.
> So as usual in OSS it is community driven. If you like it, and think
> it's still worth using, go for it and fix bugs if you find them. The
> links on the github project are really outdated, so I fixed that [1]
> at least ;)
Thanks! :-)
(Another broken link is the documentation link on the page
https://ops4j1.jira.com/wiki/display/paxconstruct/Documentation
presumably the URL
http://www.ops4j.org/projects/pax/construct was
intended to point to a maven module documentation site...?)
FWIW I actually found what was looking for when I was searching for the
maven module documentation, yesterday.
Startup of my web application was flooding my console with debug output,
from the digester and other stuff, but a _lot_ from digester, like
what's mentioned in these links:
http://stackoverflow.com/questions/3814250/how-to-not-log-digester
I tried to set the various properties I found in the <properties>
section of the top gogoshell POM:
https://github.com/steinarb/ukelonn/blob/master/ukelonn.gogoshell/pom.xml
But none of the settings work, so I was looking for a way to set
properties so that they were picked up.
But it turned out I was just trying to set the wrong property.
Yesterday I found this page:
https://ops4j1.jira.com/wiki/display/paxlogging/Configuration
and ended up adding this setting to the above POM:
<properties>
<org.ops4j.pax.logging.DefaultServiceLog.level>INFO</org.ops4j.pax.logging.DefaultServiceLog.level>
</properties>
And now the gogoshell starts quickly and quietly! :-)