Return-Path: X-Original-To: apmail-maven-users-archive@www.apache.org Delivered-To: apmail-maven-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F2061727E for ; Wed, 8 Apr 2015 08:59:33 +0000 (UTC) Received: (qmail 29380 invoked by uid 500); 8 Apr 2015 08:59:31 -0000 Delivered-To: apmail-maven-users-archive@maven.apache.org Received: (qmail 29284 invoked by uid 500); 8 Apr 2015 08:59:31 -0000 Mailing-List: contact users-help@maven.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Maven Users List" Reply-To: "Maven Users List" Delivered-To: mailing list users@maven.apache.org Received: (qmail 29272 invoked by uid 99); 8 Apr 2015 08:59:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Apr 2015 08:59:31 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of dantran@gmail.com designates 209.85.223.174 as permitted sender) Received: from [209.85.223.174] (HELO mail-ie0-f174.google.com) (209.85.223.174) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Apr 2015 08:59:06 +0000 Received: by iebrs15 with SMTP id rs15so68619409ieb.3 for ; Wed, 08 Apr 2015 01:59:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=ZShuk9XsUfoLtgWxCxVKuCdVl2WniDvzrvG0xo+ZJsU=; b=mEfyejFmnPw5n7heq+N1hbm5hPNOlP7GtbQbR7G9Jf8KTo5PgAGX0YqM1jLYvqRFGm 2VZuhENOxbrS29fz1RQ1YI8g3gFcnciAtOjY0HD10/W4nlitSKzCFjxN9d4CEFKPiPTG X6QiHqDHCyjtZMYaPH/mKocXMOgNK1c6bqhZBY+P3i63QWQvg8H7zKH3em5+UNFDyn/u bPNy3NP7i7T5GDIRI4W4AcHRXNPgxhK6HK0StmN5qXDC+GNJbP17j9Tr2ayORl9poW61 FPTg8Ny1h4OE6F0onnHKm3xkUhdFqyFcEbPM+qr44ExnZ98HGIkBP/8S/BUSYi44yKPE xD5Q== MIME-Version: 1.0 X-Received: by 10.50.112.98 with SMTP id ip2mr10125252igb.15.1428483544863; Wed, 08 Apr 2015 01:59:04 -0700 (PDT) Received: by 10.36.108.209 with HTTP; Wed, 8 Apr 2015 01:59:04 -0700 (PDT) In-Reply-To: References: Date: Wed, 8 Apr 2015 01:59:04 -0700 Message-ID: Subject: Re: Looking for a way to visualize dependency structure of my multi-module pom project From: Dan Tran To: Maven Users List Content-Type: multipart/alternative; boundary=047d7b414162426c4b051332be22 X-Virus-Checked: Checked by ClamAV on apache.org --047d7b414162426c4b051332be22 Content-Type: text/plain; charset=UTF-8 You may want to take alook org.fusesource.mvnplugins maven-graph-plugin I can graph all my internal projects and exclude external dependencies -D On Wed, Apr 8, 2015 at 1:46 AM, Pisarev, Vitaliy wrote: > I have a pretty large project (~30 modules) and want to visualize module > inter dependencies, excluding 3rd party. > > It seems that existing tools simply can't handle the maven reactor. The > maven dependency plugin (dependency:tree goal) knows how to generate > graphml, but only per module. And if I use the append flag, it simply > shoves everything to a single file, so the output is a corrupted graphml. > > I also found this tool< > https://github.com/janssk1/maven-graph-plugin/wiki/Manual> but it seems > that there is no way to control module granularity. > > My last resort would be to parse the output of dependency:tree, but I > thought I'll consult the community before this. > > --047d7b414162426c4b051332be22--