diff options
author | Martin Stockhammer <martin_s@apache.org> | 2018-11-01 14:02:41 +0100 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2018-11-01 14:02:41 +0100 |
commit | 39b2449b7d545295227e576247ecd67afd1cd925 (patch) | |
tree | d482da01e98e62b5d738abf4b93cba3952c2efeb /archiva-modules/archiva-web/archiva-webdav/src/test/resources | |
parent | 956818e3e6c6b8b9b6184633fefa946b7f45ec00 (diff) | |
download | archiva-39b2449b7d545295227e576247ecd67afd1cd925.tar.gz archiva-39b2449b7d545295227e576247ecd67afd1cd925.zip |
Switching to forked tests in webdav project
Diffstat (limited to 'archiva-modules/archiva-web/archiva-webdav/src/test/resources')
4 files changed, 55 insertions, 9 deletions
diff --git a/archiva-modules/archiva-web/archiva-webdav/src/test/resources/log4j2-test.xml b/archiva-modules/archiva-web/archiva-webdav/src/test/resources/log4j2-test.xml new file mode 100644 index 000000000..0da8a7fe9 --- /dev/null +++ b/archiva-modules/archiva-web/archiva-webdav/src/test/resources/log4j2-test.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- + ~ 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. + --> + + +<configuration> <!-- status="debug" --> + <appenders> + <Console name="console" target="SYSTEM_OUT"> + <PatternLayout pattern="%highlight{%d{HH:mm:ss.SSS} [%L] [%t] %-5level %logger{3} - %msg%n}" /> + </Console> + <RollingRandomAccessFile name="rolling" fileName="/tmp/archiva.log" + filePattern="/tmp/archiva-%d{yyyyMMdd}.log" + immediateFlush="true" append="true"> + <PatternLayout> + <pattern>%d [%t] %-5p %c %x - %m%n</pattern> + </PatternLayout> + <Policies> + <TimeBasedTriggeringPolicy /> + </Policies> + </RollingRandomAccessFile> + </appenders> + + <loggers> + + <logger name="org.apache.archiva.redback.rest.services" level="error"/> + <logger name="JPOX" level="error"/> + <logger name="org.apache.archiva.rest.services" level="info"/> + <logger name="org.springframework" level="info"/> + <logger name="org.apache.commons.configuration" level="info"/> + + <root level="info"> + <appender-ref ref="console"/> + <appender-ref ref="rolling" /> + </root> + </loggers> +</configuration> + + diff --git a/archiva-modules/archiva-web/archiva-webdav/src/test/resources/repository-servlet-simple.xml b/archiva-modules/archiva-web/archiva-webdav/src/test/resources/repository-servlet-simple.xml index ce9777fa8..10979d0f3 100644 --- a/archiva-modules/archiva-web/archiva-webdav/src/test/resources/repository-servlet-simple.xml +++ b/archiva-modules/archiva-web/archiva-webdav/src/test/resources/repository-servlet-simple.xml @@ -43,9 +43,6 @@ <![CDATA[ <configuration> <system/> - <xml fileName="${test.resources.path}/repository-archiva.xml" config-forceCreate="true" - config-optional="true" - config-name="org.apache.archiva.base" config-at="org.apache.archiva"/> </configuration> ]]> </value> diff --git a/archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context-servlet-security-test.xml b/archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context-servlet-security-test.xml index 9f38b827d..ee6bcb7b8 100644 --- a/archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context-servlet-security-test.xml +++ b/archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context-servlet-security-test.xml @@ -59,9 +59,6 @@ <![CDATA[ <configuration> <system/> - <xml fileName="${test.resources.path}/repository-archiva.xml" config-forceCreate="true" - config-optional="true" - config-name="org.apache.archiva.base" config-at="org.apache.archiva"/> </configuration> ]]> </value> diff --git a/archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context.xml b/archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context.xml index fba970705..b816f0ccb 100644 --- a/archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context.xml +++ b/archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context.xml @@ -58,9 +58,7 @@ <![CDATA[ <configuration> <system/> - <xml fileName="${test.resources.path}/repository-archiva.xml" config-forceCreate="true" - config-optional="true" - config-name="org.apache.archiva.base" config-at="org.apache.archiva"/> + </configuration> ]]> </value> |