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 1AB3F200C3F for ; Wed, 22 Mar 2017 12:09:50 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 18FE9160B91; Wed, 22 Mar 2017 11:09:50 +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 614F4160B83 for ; Wed, 22 Mar 2017 12:09:49 +0100 (CET) Received: (qmail 84561 invoked by uid 500); 22 Mar 2017 11:09:48 -0000 Mailing-List: contact issues-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list issues@maven.apache.org Received: (qmail 84550 invoked by uid 99); 22 Mar 2017 11:09:48 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2017 11:09:48 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 198EBC0A00 for ; Wed, 22 Mar 2017 11:09:48 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -98.549 X-Spam-Level: X-Spam-Status: No, score=-98.549 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_NEUTRAL=0.652, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id XO8qwi5ii0FE for ; Wed, 22 Mar 2017 11:09:47 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 835325FCBA for ; Wed, 22 Mar 2017 11:09:46 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 21F23E0559 for ; Wed, 22 Mar 2017 11:09:42 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id D5C0E24D34 for ; Wed, 22 Mar 2017 11:09:41 +0000 (UTC) Date: Wed, 22 Mar 2017 11:09:41 +0000 (UTC) From: "Vladimir Dergachev (JIRA)" To: issues@maven.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (MDEP-560) maven-dependency-plugin ignores method references passed as parameter MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 22 Mar 2017 11:09:50 -0000 [ https://issues.apache.org/jira/browse/MDEP-560?page=3Dcom.atlassian.= jira.plugin.system.issuetabpanels:all-tabpanel ] Vladimir Dergachev updated MDEP-560: ------------------------------------ Description:=20 I created example for commons-lang library https://gist.github.com/vdergach= ev/3dd0908ec0301b1e0357005e669cc726 My applications contains few modules, in parent pom.xml i have regular entr= y {code} 1.8 ... .... commons-lang commons-lang 2.6 ... {code} in module's pom ONLY spring deps, so i don't have commons-lang library in m= odule dependencies, but test runs fine. As you can see I passed reference S= tringUtils::isEmpty as a parameter to method. When part 2 uncommented and m= ethod StringUtils.isEmpty called directly in code i will have correct error= message from maven-dependency-plugin {code} [INFO] =E2=80=94 maven-dependency-plugin:3.0.0:analyze-only (analyze-depend= encies) @ zoo-dispatcher-service =E2=80=94 [WARNING] Used undeclared dependencies found: [WARNING] commons-lang:commons-lang:jar:2.6:compile {code} was: I created example for commons-lang library https://gist.github.com/vdergach= ev/3dd0908ec0301b1e0357005e669cc726 My applications contains few modules, in parent pom.xml i have regular entr= y 1.8 .... commons-lang commons-lang 2.6 ... in module's pom ONLY spring deps, so i don't have commons-lang library in m= odule dependencies, but test runs fine. As you can see I passed reference S= tringUtils::isEmpty as a parameter to method. When part 2 uncommented and m= ethod StringUtils.isEmpty called directly in code i will have correct error= message from maven-dependency-plugin [INFO] =E2=80=94 maven-dependency-plugin:3.0.0:analyze-only (analyze-depend= encies) @ zoo-dispatcher-service =E2=80=94 [WARNING] Used undeclared dependencies found: [WARNING] commons-lang:commons-lang:jar:2.6:compile Thanks > maven-dependency-plugin ignores method references passed as parameter > --------------------------------------------------------------------- > > Key: MDEP-560 > URL: https://issues.apache.org/jira/browse/MDEP-560 > Project: Maven Dependency Plugin > Issue Type: Bug > Affects Versions: 3.0.0 > Reporter: Vladimir Dergachev > Priority: Minor > > I created example for commons-lang library https://gist.github.com/vderga= chev/3dd0908ec0301b1e0357005e669cc726 > My applications contains few modules, in parent pom.xml i have regular en= try > {code} > > 1.8 > ... > > > > .... > > commons-lang > commons-lang > 2.6 > > ... > > > {code} > in module's pom ONLY spring deps, so i don't have commons-lang library in= module dependencies, but test runs fine. As you can see I passed reference= StringUtils::isEmpty as a parameter to method. When part 2 uncommented and= method StringUtils.isEmpty called directly in code i will have correct err= or message from maven-dependency-plugin > {code} > [INFO] =E2=80=94 maven-dependency-plugin:3.0.0:analyze-only (analyze-depe= ndencies) @ zoo-dispatcher-service =E2=80=94 > [WARNING] Used undeclared dependencies found: > [WARNING] commons-lang:commons-lang:jar:2.6:compile > {code} -- This message was sent by Atlassian JIRA (v6.3.15#6346)