Remove all âruntimeâ dependencies to logback (EPL/LGPL)
Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/ca8126e9 Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/ca8126e9 Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/ca8126e9 Branch: refs/heads/develop Commit: ca8126e96fd2d041e64a73a071450d3c4b6975c7 Parents: 4b75e69 Author: Paul Merlin <[email protected]> Authored: Mon Jul 6 16:56:35 2015 +0200 Committer: Paul Merlin <[email protected]> Committed: Mon Jul 6 16:56:35 2015 +0200 ---------------------------------------------------------------------- manual/build.gradle | 2 +- samples/sql-support/build.gradle | 2 +- .../sql-support/src/main/resources/logback.xml | 41 -------------------- 3 files changed, 2 insertions(+), 43 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/ca8126e9/manual/build.gradle ---------------------------------------------------------------------- diff --git a/manual/build.gradle b/manual/build.gradle index 0dbaaa9..411193f 100644 --- a/manual/build.gradle +++ b/manual/build.gradle @@ -24,7 +24,7 @@ dependencies { compile( project( ":org.qi4j.libraries:org.qi4j.library.constraints" ) ) compile( project( ":org.qi4j.libraries:org.qi4j.library.logging" ) ) runtime( project( ":org.qi4j.core:org.qi4j.core.runtime" ) ) - runtime( libraries.logback ) + runtime( libraries.slf4j_simple ) } http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/ca8126e9/samples/sql-support/build.gradle ---------------------------------------------------------------------- diff --git a/samples/sql-support/build.gradle b/samples/sql-support/build.gradle index 286e6fe..63ba280 100644 --- a/samples/sql-support/build.gradle +++ b/samples/sql-support/build.gradle @@ -31,7 +31,7 @@ dependencies { runtime project(":org.qi4j.core:org.qi4j.core.runtime") runtime libraries.postgres - runtime libraries.logback + runtime libraries.slf4j_simple } http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/ca8126e9/samples/sql-support/src/main/resources/logback.xml ---------------------------------------------------------------------- diff --git a/samples/sql-support/src/main/resources/logback.xml b/samples/sql-support/src/main/resources/logback.xml deleted file mode 100644 index e9fbe43..0000000 --- a/samples/sql-support/src/main/resources/logback.xml +++ /dev/null @@ -1,41 +0,0 @@ -<?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> - - <appender name="stdout" class="ch.qos.logback.core.ConsoleAppender"> - <layout class="ch.qos.logback.classic.PatternLayout"> - <Pattern>[@%-10thread] %-5level %logger{42} - %msg%n</Pattern> - </layout> - </appender> - - <root level="warn"> - <appender-ref ref="stdout" /> - </root> - - <!-- SQL Support --> - <logger name="org.qi4j.library.sql" level="warn"/> - - <!-- SQL EntityStore --> - <logger name="org.qi4j.entitystore.sql" level="warn"/> - <!-- Put this one to trace level to see all SQL strings --> - <logger name="org.qi4j.entitystore.sql.internal.database.DatabaseSQLStringsBuilder" level="warn"/> - - <!-- SQL Index/Query --> - <logger name="org.qi4j.index.sql" level="warn"/> - -</configuration> \ No newline at end of file
