Fixing command line build failure
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@850 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
2bbf944a20
commit
1148817866
|
@ -28,27 +28,6 @@
|
|||
<artifactId>jetty-centralized-logging</artifactId>
|
||||
<name>Jetty :: Centralized Logging</name>
|
||||
<packaging>jar</packaging>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>config.xml</descriptor>
|
||||
</descriptors>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
|
|
|
@ -232,6 +232,7 @@ public class CentralLoggerConfig
|
|||
root.appenders = getAppenders(props,"root.appenders",declaredAppenders);
|
||||
if (root.appenders == null)
|
||||
{
|
||||
root.appenders = new ArrayList<Appender>();
|
||||
// Default (if not specified for root)
|
||||
root.appenders.add(new ConsoleAppender());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue