Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D547F200D25 for ; Sun, 22 Oct 2017 18:05:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D3CE0160BD7; Sun, 22 Oct 2017 16:05:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2755F1609C8 for ; Sun, 22 Oct 2017 18:05:05 +0200 (CEST) Received: (qmail 38467 invoked by uid 500); 22 Oct 2017 16:05:04 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 38458 invoked by uid 99); 22 Oct 2017 16:05:04 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Oct 2017 16:05:04 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 6B7F5180234 for ; Sun, 22 Oct 2017 16:05:03 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.021 X-Spam-Level: X-Spam-Status: No, score=-4.021 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id 1A7TW5PPJARQ for ; Sun, 22 Oct 2017 16:05:01 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 7C6815FAC9 for ; Sun, 22 Oct 2017 16:05:00 +0000 (UTC) Received: (qmail 38445 invoked by uid 99); 22 Oct 2017 16:04:59 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Oct 2017 16:04:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 093B1DFB6F; Sun, 22 Oct 2017 16:04:57 +0000 (UTC) From: yew1eb To: issues@flink.incubator.apache.org Reply-To: issues@flink.incubator.apache.org References: In-Reply-To: Subject: [GitHub] flink pull request #4714: [FLINK-7577][build][WIP] POM Cleanup flink-core Content-Type: text/plain Message-Id: <20171022160458.093B1DFB6F@git1-us-west.apache.org> Date: Sun, 22 Oct 2017 16:04:57 +0000 (UTC) archived-at: Sun, 22 Oct 2017 16:05:06 -0000 GitHub user yew1eb reopened a pull request: https://github.com/apache/flink/pull/4714 [FLINK-7577][build][WIP] POM Cleanup flink-core ## What is the purpose of the change This PR changes the flink-core pom to - not contain unused dependencies - contain all used dependencies ## Brief change log ## Verifying this change _mvn dependency:analyze_ ``` [INFO] --- maven-dependency-plugin:2.10:analyze (default-cli) @ flink-core --- [WARNING] Used undeclared dependencies found: [WARNING] org.hamcrest:hamcrest-core:jar:1.3:test [WARNING] org.powermock:powermock-core:jar:1.6.5:test [WARNING] org.powermock:powermock-reflect:jar:1.6.5:test [WARNING] org.objenesis:objenesis:jar:2.1:compile [WARNING] Unused declared dependencies found: [WARNING] org.xerial.snappy:snappy-java:jar:1.1.1.3:compile [WARNING] org.hamcrest:hamcrest-all:jar:1.3:test [WARNING] org.apache.flink:force-shading:jar:1.4-SNAPSHOT:compile [WARNING] log4j:log4j:jar:1.2.17:test [WARNING] org.joda:joda-convert:jar:1.7:test [WARNING] org.slf4j:slf4j-log4j12:jar:1.7.7:test ``` After the change: ``` [INFO] --- maven-dependency-plugin:2.10:analyze (default-cli) @ flink-core --- [WARNING] Used undeclared dependencies found: [WARNING] org.hamcrest:hamcrest-core:jar:1.3:test [WARNING] org.powermock:powermock-core:jar:1.6.5:test [WARNING] org.powermock:powermock-reflect:jar:1.6.5:test [WARNING] org.objenesis:objenesis:jar:2.1:compile [WARNING] Unused declared dependencies found: [WARNING] org.xerial.snappy:snappy-java:jar:1.1.1.3:compile [WARNING] org.hamcrest:hamcrest-all:jar:1.3:test [WARNING] org.apache.flink:force-shading:jar:1.4-SNAPSHOT:compile [WARNING] log4j:log4j:jar:1.2.17:test [WARNING] org.slf4j:slf4j-log4j12:jar:1.7.7:test ``` ## Does this pull request potentially affect one of the following parts: - Dependencies (does it add or upgrade a dependency): (yes) ## Documentation none You can merge this pull request into a Git repository by running: $ git pull https://github.com/yew1eb/flink FLINK-7577 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/flink/pull/4714.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #4714 ---- commit 7e32823cb925e33dd8abefbe0b33ec5d73fbe1d8 Author: yew1eb Date: 2017-10-22T16:04:30Z POM Cleanup flink-core ---- ---