Page 1 of 1

Stack JUL Ext 1.1.1 released

Posted: Tue Mar 12, 2013 4:34 pm
by ThorntonRP
A new version of the Java Stack logging extensions utility (stack-jul-ext) has been released to supply log forge protection and to address issues in which multiple log statements were being printed to a single line. To leverage this fix before the April 2013 release, add the following to your project's parent pom's properties:

<stackJulExtVersion>1.1.1</stackJulExtVersion>

After setting this property, you will need to rebuild your project from the parent pom so that the tomcat deployable artifact gets updated with the new library version.

In IntelliJ and NetBeans, you will also need to re-run the stack-tomcat:config goal

Re: Stack JUL Ext 1.1.1 released

Posted: Mon Mar 18, 2013 11:35 am
by ThorntonRP
Just to clarify, be sure to add the override property to the pom's <properties> section as in the following example:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<pom ...>
	...
	<properties>
		...
		<!-- TODO remove after stack-master 3.2.9 release -->
		<stackJulExtVersion>1.1.1</stackJulExtVersion>
	</properties>
	...
</pom>