Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Fix XML headers and validate #736
Merged
Commits
Jump to file or symbol
Failed to load files and symbols.
Large diffs are not rendered by default.
Oops, something went wrong.
| @@ -1,16 +1,27 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| +<!-- | ||
| + Copyright (c) 2017 Red Hat Inc and others | ||
| + | ||
| + All rights reserved. This program and the accompanying materials | ||
| + are made available under the terms of the Eclipse Public License v1.0 | ||
| + which accompanies this distribution, and is available at | ||
| + http://www.eclipse.org/legal/epl-v10.html | ||
| + | ||
| + Contributors: | ||
| + Red Hat Inc - initial API and implementation | ||
| + --> | ||
| <!DOCTYPE xml> | ||
| <configuration> | ||
| - <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> | ||
| - <encoder> | ||
| - <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
| - </encoder> | ||
| - </appender> | ||
| + <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> | ||
| + <encoder> | ||
| + <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
| + </encoder> | ||
| + </appender> | ||
| - <logger name="liquibase" level="WARN" /> | ||
| + <logger name="liquibase" level="WARN" /> | ||
| - <root level="info"> | ||
| - <appender-ref ref="console" /> | ||
| - </root> | ||
| + <root level="info"> | ||
| + <appender-ref ref="console" /> | ||
| + </root> | ||
| </configuration> |
| @@ -1,16 +1,27 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| +<!-- | ||
| + Copyright (c) 2017 Red Hat Inc and others | ||
| + | ||
| + All rights reserved. This program and the accompanying materials | ||
| + are made available under the terms of the Eclipse Public License v1.0 | ||
| + which accompanies this distribution, and is available at | ||
| + http://www.eclipse.org/legal/epl-v10.html | ||
| + | ||
| + Contributors: | ||
| + Red Hat Inc - initial API and implementation | ||
| + --> | ||
| <!DOCTYPE xml> | ||
| <configuration> | ||
| - <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> | ||
| - <encoder> | ||
| - <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
| - </encoder> | ||
| - </appender> | ||
| + <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> | ||
| + <encoder> | ||
| + <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
| + </encoder> | ||
| + </appender> | ||
| - <logger name="liquibase" level="WARN" /> | ||
| + <logger name="liquibase" level="WARN" /> | ||
| - <root level="info"> | ||
| - <appender-ref ref="console" /> | ||
| - </root> | ||
| + <root level="info"> | ||
| + <appender-ref ref="console" /> | ||
| + </root> | ||
| </configuration> |
| @@ -1,16 +1,27 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| +<!-- | ||
| + Copyright (c) 2017 Red Hat Inc and others | ||
| + | ||
| + All rights reserved. This program and the accompanying materials | ||
| + are made available under the terms of the Eclipse Public License v1.0 | ||
| + which accompanies this distribution, and is available at | ||
| + http://www.eclipse.org/legal/epl-v10.html | ||
| + | ||
| + Contributors: | ||
| + Red Hat Inc - initial API and implementation | ||
| + --> | ||
| <!DOCTYPE xml> | ||
| <configuration> | ||
| - <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> | ||
| - <encoder> | ||
| - <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
| - </encoder> | ||
| - </appender> | ||
| + <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> | ||
| + <encoder> | ||
| + <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
| + </encoder> | ||
| + </appender> | ||
| - <logger name="liquibase" level="WARN" /> | ||
| + <logger name="liquibase" level="WARN" /> | ||
| - <root level="info"> | ||
| - <appender-ref ref="console" /> | ||
| - </root> | ||
| + <root level="info"> | ||
| + <appender-ref ref="console" /> | ||
| + </root> | ||
| </configuration> |
Oops, something went wrong.