[ANN] Apache Maven Assembly Plugin 2.5.1 Released

2014-11-08 Thread Kristian Rosenvold
The Apache Maven team is pleased to announce the release of the Apache Maven Assembly Plugin, version 2.5.1. The Assembly Plugin for Maven is primarily intended to allow users to aggregate the project output along with its dependencies, modules, site documentation, and other files into a single

[ANN] Apache Maven Surefire Plugin 2.18 Released

2014-11-08 Thread Andreas Gudian
The Apache Maven team is pleased to announce the release of the Apache Maven Surefire Plugin, version 2.18 The release contains a number of bug fixes, and introduces an option to automatically rerun failing tests, including proper reporting on the console and in the XML reports for the individual

fetching a tar.gz URL / dependency via HTTP during a build?

2014-11-08 Thread Kevin Burton
I’m trying to build .debs using jdeb and maven for various projects. For example, there is no .deb for spark. So I’m just taking the tar.gz and making a deb that installs to /usr/share/apache-spark. The problem is I don’t want to put the full binary into git as it’s about 200MB. I’d rather

Re: fetching a tar.gz URL / dependency via HTTP during a build?

2014-11-08 Thread Bernd
You could use the dependency-plugin with copy dependencies to get the binary artifact from a maven repo (if there is one). Am 08.11.2014 19:43 schrieb Kevin Burton bur...@spinn3r.com: I’m trying to build .debs using jdeb and maven for various projects. For example, there is no .deb for spark.

Re: fetching a tar.gz URL / dependency via HTTP during a build?

2014-11-08 Thread Kevin Burton
oh .. gotcha. So I would/could take the tar.gz and put it in a maven repo. I don’t think there is one for the tar.gzs though. On Sat, Nov 8, 2014 at 10:45 AM, Bernd e...@zusammenkunft.net wrote: You could use the dependency-plugin with copy dependencies to get the binary artifact from a

Re: fetching a tar.gz URL / dependency via HTTP during a build?

2014-11-08 Thread Karl Heinz Marbaise
Hi Kevin, to download a an file from somewhere you could use the wagon-maven-plugin like this: plugin groupIdorg.codehaus.mojo/groupId artifactIdwagon-maven-plugin/artifactId version1.0-beta-5/version executions execution iddownload-test-data/id

Re: fetching a tar.gz URL / dependency via HTTP during a build?

2014-11-08 Thread Kevin Burton
Nice.. it works actually. the only problem is that it downloads the file every time and it’s 180MB… there’s no way to skip it if the file already exists. hm.. On Sat, Nov 8, 2014 at 11:00 AM, Karl Heinz Marbaise khmarba...@gmx.de wrote: Hi Kevin, to download a an file from somewhere you

Re: fetching a tar.gz URL / dependency via HTTP during a build?

2014-11-08 Thread Karl Heinz Marbaise
Hi Kevin, On 11/8/14 8:19 PM, Kevin Burton wrote: Nice.. it works actually. the only problem is that it downloads the file every time and it’s 180MB… there’s no way to skip it if the file already exists. hm.. so this sounds like an idea for improvement Kind regards Karl Heinz