Repository: incubator-distributedlog Updated Branches: refs/heads/master 8e619cd73 -> 3fceccc6c
DL-127: Fix coverall report Author: Sijie Guo <si...@apache.org> Reviewers: Franck Cuny <franck.c...@gmail.com> Closes #53 from sijie/sijie/remove_reporting Project: http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/commit/3fceccc6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/tree/3fceccc6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/diff/3fceccc6 Branch: refs/heads/master Commit: 3fceccc6cbce5c41c52510172ab6925d3beec35b Parents: 8e619cd Author: Sijie Guo <si...@apache.org> Authored: Mon Dec 12 15:37:54 2016 -0800 Committer: Sijie Guo <sij...@twitter.com> Committed: Mon Dec 12 15:37:54 2016 -0800 ---------------------------------------------------------------------- distributedlog-core/pom.xml | 4 ++++ distributedlog-protocol/pom.xml | 6 ++++++ distributedlog-service/pom.xml | 6 ++++++ pom.xml | 26 +++++++++++--------------- 4 files changed, 27 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/3fceccc6/distributedlog-core/pom.xml ---------------------------------------------------------------------- diff --git a/distributedlog-core/pom.xml b/distributedlog-core/pom.xml index 20d3139..4da1849 100644 --- a/distributedlog-core/pom.xml +++ b/distributedlog-core/pom.xml @@ -118,6 +118,10 @@ <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> </exclusions> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/3fceccc6/distributedlog-protocol/pom.xml ---------------------------------------------------------------------- diff --git a/distributedlog-protocol/pom.xml b/distributedlog-protocol/pom.xml index 48b749a..4417d14 100644 --- a/distributedlog-protocol/pom.xml +++ b/distributedlog-protocol/pom.xml @@ -30,6 +30,12 @@ <groupId>org.apache.bookkeeper.stats</groupId> <artifactId>bookkeeper-stats-api</artifactId> <version>${bookkeeper.version}</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.thrift</groupId> http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/3fceccc6/distributedlog-service/pom.xml ---------------------------------------------------------------------- diff --git a/distributedlog-service/pom.xml b/distributedlog-service/pom.xml index aa5849e..b7b6ff8 100644 --- a/distributedlog-service/pom.xml +++ b/distributedlog-service/pom.xml @@ -63,6 +63,12 @@ <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>${zookeeper.version}</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>jdiff</groupId> http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/3fceccc6/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 6441a26..db07f12 100644 --- a/pom.xml +++ b/pom.xml @@ -195,6 +195,17 @@ <artifactId>coveralls-maven-plugin</artifactId> <version>4.1.0</version> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <version>2.7</version> + <configuration> + <formats> + <format>html</format> + <format>xml</format> + </formats> + </configuration> + </plugin> </plugins> </build> <repositories> @@ -212,19 +223,4 @@ <url>http://maven.twttr.com</url> </repository> </repositories> - <reporting> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <version>2.7</version> - <configuration> - <formats> - <format>html</format> - <format>xml</format> - </formats> - </configuration> - </plugin> - </plugins> - </reporting> </project>