Re: Including Maven Dependencies in Build

2018-12-10 Thread Dennis Putnam
> On 12/7/2018 12:10 AM, Jaikiran Pai wrote: >> Hello Dennis, >> >> >> On 07/12/18 1:15 AM, Dennis Putnam wrote: >>>         >>> >> I don't see this fileset being used in the rest of the target(s) which >> generate your jar file. Maybe you missed using it to copy over the >> dependency files? Take

Re: Including Maven Dependencies in Build

2018-12-09 Thread Dennis Putnam
On 12/7/2018 3:14 PM, Dennis Putnam wrote: > On 12/7/2018 12:10 AM, Jaikiran Pai wrote: >> Hello Dennis, >> >> >> On 07/12/18 1:15 AM, Dennis Putnam wrote: >>>         >>> >> I don't see this fileset being used in the rest of the target(s) which >> generate your jar file. Maybe you missed using it

Re: Including Maven Dependencies in Build

2018-12-07 Thread Dennis Putnam
On 12/7/2018 12:10 AM, Jaikiran Pai wrote: > Hello Dennis, > > > On 07/12/18 1:15 AM, Dennis Putnam wrote: >>         >> > I don't see this fileset being used in the rest of the target(s) which > generate your jar file. Maybe you missed using it to copy over the > dependency files? Take a look at

Re: Including Maven Dependencies in Build

2018-12-06 Thread Jaikiran Pai
Hello Dennis, On 07/12/18 1:15 AM, Dennis Putnam wrote: > >         > I don't see this fileset being used in the rest of the target(s) which generate your jar file. Maybe you missed using it to copy over the dependency files? Take a look at section "Using FileSets and the Version Mapper" of http

Including Maven Dependencies in Build

2018-12-06 Thread Dennis Putnam
I have a working ant build script but I changed my application to use some maven dependencies. I am trying to include those dependencies into that build script. I found this article for doing that: https://stackoverflow.com/questions/7335819/ant-eclipse-complains-about-artifactdependencies I k