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 C53BE10D9F for ; Tue, 1 Apr 2014 12:06:27 +0000 (UTC) Received: (qmail 1694 invoked by uid 500); 1 Apr 2014 12:06:23 -0000 Delivered-To: apmail-maven-users-archive@maven.apache.org Received: (qmail 1589 invoked by uid 500); 1 Apr 2014 12:06:22 -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 1569 invoked by uid 99); 1 Apr 2014 12:06:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Apr 2014 12:06:18 +0000 X-ASF-Spam-Status: No, hits=2.9 required=5.0 tests=FSL_HELO_BARE_IP_2,RCVD_IN_DNSWL_NONE,RCVD_NUMERIC_HELO,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of gcjtmu-turbine-maven-user-846@m.gmane.org designates 80.91.229.3 as permitted sender) Received: from [80.91.229.3] (HELO plane.gmane.org) (80.91.229.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Apr 2014 12:06:12 +0000 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WUxRu-0003TO-OK for users@maven.apache.org; Tue, 01 Apr 2014 14:05:50 +0200 Received: from 155.55.49.12 ([155.55.49.12]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Apr 2014 14:05:50 +0200 Received: from sb by 155.55.49.12 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Apr 2014 14:05:50 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: users@maven.apache.org To: users@maven.apache.org From: Steinar Bang Subject: What packaging for Jira excel reports with maven? Date: Tue, 01 Apr 2014 14:05:13 +0200 Organization: Probably a good idea Lines: 29 Message-ID: Mime-Version: 1.0 Content-Type: text/plain X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 155.55.49.12 Mail-Copies-To: never User-Agent: Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.3 (windows-nt) Cancel-Lock: sha1:GGIxySjKqcxPZf/JlW/quqDXpu4= X-Virus-Checked: Checked by ClamAV on apache.org I have access to a Jar-file that contains code that: - Reads an excel file containing a JQL query, the names of the fields from the JQL results to include in excel, as well as the sheets that are to be populated - Talks to Jira, using the Jira REST API, to do the query and extract the results - Exports a new excel file populated with the query results The Jar-file resides in a plexus archive, so I thought that having a small maven project, containing a pom.xml and the template excel spreadshet in src/main/resources/ would be a good match. The idea was that I could: - set the Jar-file containing the excel export code as a dependency - use exec-maven-plugin to run the Jar - have the output of exec-maven-plugin (an excel file) as the build artifact But the idea stopped on that I don't know what packaging should be used for the pom: "jar" didn't seem appropriate, so I tried "pom", but that doesn't do anything (no target directory created). Is maven appropriate for what I'm trying to do? Is there an appropriate packaging to use? Thanks! - Steinar --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@maven.apache.org For additional commands, e-mail: users-help@maven.apache.org