diff options
author | Brett Porter <brett@apache.org> | 2008-04-07 13:13:06 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2008-04-07 13:13:06 +0000 |
commit | 28d9a2384a42236eef4274e163335ff3b32bbe0b (patch) | |
tree | 8e76bfcf1d610985ef7c95bc2bedcdef9326374e /archiva-cli/src/main/resources | |
parent | 82f8c7d05f6346413591a0b5599342f1a7e775ec (diff) | |
download | archiva-28d9a2384a42236eef4274e163335ff3b32bbe0b.tar.gz archiva-28d9a2384a42236eef4274e163335ff3b32bbe0b.zip |
refreshed the CLI
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@645493 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-cli/src/main/resources')
-rw-r--r-- | archiva-cli/src/main/resources/META-INF/plexus/components.xml | 50 | ||||
-rw-r--r-- | archiva-cli/src/main/resources/log4j.properties | 4 |
2 files changed, 2 insertions, 52 deletions
diff --git a/archiva-cli/src/main/resources/META-INF/plexus/components.xml b/archiva-cli/src/main/resources/META-INF/plexus/components.xml deleted file mode 100644 index ad355c655..000000000 --- a/archiva-cli/src/main/resources/META-INF/plexus/components.xml +++ /dev/null @@ -1,50 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!-- - ~ Licensed to the Apache Software Foundation (ASF) under one - ~ or more contributor license agreements. See the NOTICE file - ~ distributed with this work for additional information - ~ regarding copyright ownership. The ASF licenses this file - ~ to you under the Apache License, Version 2.0 (the - ~ "License"); you may not use this file except in compliance - ~ with the License. You may obtain a copy of the License at - ~ - ~ http://www.apache.org/licenses/LICENSE-2.0 - ~ - ~ Unless required by applicable law or agreed to in writing, - ~ software distributed under the License is distributed on an - ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - ~ KIND, either express or implied. See the License for the - ~ specific language governing permissions and limitations - ~ under the License. ---> -<component-set> - <components> - <component> - <role>org.codehaus.plexus.registry.Registry</role> - <implementation> - org.codehaus.plexus.registry.commons.CommonsConfigurationRegistry - </implementation> - <role-hint>commons-configuration</role-hint> - <configuration> - <properties> - <system /> - <xml fileName="${appserver.base}/conf/archiva.xml" - config-optional="true" - config-name="org.apache.maven.archiva.base" - config-at="org.apache.maven.archiva" /> - <xml fileName="${appserver.home}/conf/archiva.xml" - config-optional="true" - config-at="org.apache.maven.archiva" /> - <xml fileName="${user.home}/.m2/archiva.xml" - config-optional="true" - config-name="org.apache.maven.archiva.user" - config-at="org.apache.maven.archiva" /> - <xml - fileName="org/apache/maven/archiva/configuration/default-archiva.xml" - config-optional="true" - config-at="org.apache.maven.archiva" /> - </properties> - </configuration> - </component> - </components> -</component-set>
\ No newline at end of file diff --git a/archiva-cli/src/main/resources/log4j.properties b/archiva-cli/src/main/resources/log4j.properties index 6d107570b..ff5b14c77 100644 --- a/archiva-cli/src/main/resources/log4j.properties +++ b/archiva-cli/src/main/resources/log4j.properties @@ -1,10 +1,10 @@ # Set root logger level to DEBUG and its only appender to A1. -log4j.rootLogger=INFO, A1 +log4j.rootLogger=ERROR, A1 # A1 is set to be a ConsoleAppender. log4j.appender.A1=org.apache.log4j.ConsoleAppender # A1 uses PatternLayout. log4j.appender.A1.layout=org.apache.log4j.PatternLayout -log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n +log4j.appender.A1.layout.ConversionPattern=[%t] %-5p %c %x - %m%n |