Re: If anyone ever wanted to download a bunch of deps specified in a Maven POM for an Ant build

2017-06-12 Thread Manfred Moser
Why not use the Maven Resolver (formerly Eclipse Aether) Ant Tasks? https://maven.apache.org/resolver-archives/resolver-ant-tasks-LATEST/ Paul Hammant wrote on 2017-06-11 11:53: > If your 'current directory' is a Maven checkout, I have a Python script > that will download the dependencies into

Re: If anyone ever wanted to download a bunch of deps specified in a Maven POM for an Ant build

2017-06-12 Thread Paul Hammant
Looks good. My Google fu let me down! On Mon, Jun 12, 2017 at 11:41 AM, Manfred Moser wrote: > Why not use the Maven Resolver (formerly Eclipse Aether) Ant Tasks? > > https://maven.apache.org/resolver-archives/resolver-ant-tasks-LATEST/ > > Paul Hammant wrote on

Re: Producing java8 and java7 versions

2017-06-12 Thread Christofer Dutz
Hi Laurent, I love bleeding edge stuff, but I don’t like SM stuff … guess java 9 multi-jars sound more SM than bleeding edge for me. Guess it would not be good to base the build of an Apache project on that ;-) Chris Am 10.06.17, 09:31 schrieb "Laurent Perez" : On a

maven-jaxb2-plugin: Error in parsing schema location even when xsd and xjb files are in same location

2017-06-12 Thread Debraj Manna
I am having a pom.xml which looks like below:- http://maven.apache.org/POM/4.0.0; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd;> 4.0.0 com.eros

Avoid Unnecessary regeneration in jaxb2-maven-plugin

2017-06-12 Thread Debraj Manna
Hi Is it possible to avoid unnecessary regeneration in jaxb2-maven-plugin? Basically I want to generate the sources only when underlying schema has changed? It seems maven-jaxb2-plugin has an option force-regenerate . Do