Re: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-28 Thread Greg Chabala
I had the advantage of learning Maven in the company of other developers
where it was already in heavy use, but I recommend reading the beginners
guides:

https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
https://maven.apache.org/guides/getting-started/

Also, the Sonatype Maven book may be a bit dated, but sometimes it has
additional context: https://books.sonatype.com/mvnref-book/reference/

Greg Chabala

On Wed, Jul 28, 2021 at 7:03 AM christopher.mil...@gd-ms.com <
christopher.mil...@gd-ms.com> wrote:

>
> Okay, so I'll stay with what I have.
>
> Do you have any recommendations on where to get more up to speed on
> Maven?   Like I said earlier, I've been watching some videos on youtube,
> still not getting some of the concepts being put forth.
>
> Thanks
>
>
>
> -Original Message-
> From: Greg Chabala 
> Sent: Tuesday, July 27, 2021 4:10 PM
> To: Maven Users List 
> Subject: Re: Questions on what xml tags to use for pom.xml file for
> downloading isos
>
> 
> External E-mail --- CAUTION: This email originated from outside GDMS. Do
> not click links or open attachments unless you recognize the sender and
> know the content is safe.
>
> If it works, it works. It sounds like you're not really using Maven to
> build software in this case, you're only using (or abusing) it to download
> binaries.
>
> If the binaries you were downloading were actually libraries that Maven
> was using to compile software against, it would be more conventional for
> them to be in the dependency section.
>
> On Tue, Jul 27, 2021 at 2:53 PM christopher.mil...@gd-ms.com <
> christopher.mil...@gd-ms.com> wrote:
>
> >
> > Thanks for the write up.
> >
> > I'm watching a few videos on youtube, trying to understand the pros of
> > using Dependencies and I'm still not understanding, Vs what I have
> > currently mark up tags that pertain to the ISOs that I want to
> > download under  and  tags.
> >
> >
> >
> > -Original Message-
> > From: Greg Chabala 
> > Sent: Tuesday, July 27, 2021 1:31 PM
> > To: Maven Users List 
> > Subject: Re: Questions on what xml tags to use for pom.xml file for
> > downloading isos
> >
> > 
> > External E-mail --- CAUTION: This email originated from outside GDMS.
> > Do not click links or open attachments unless you recognize the sender
> > and know the content is safe.
> >
> > Sounds like you're all set, but as you asked for an example with the
> > dependencies tag:
> >
> >   > xmlns="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
> >
> > Software_Release_Here
> > Software_Program_Here
> > Version_Number_Here
> >
> > 
> > /dropbox/foo
> > ${depStagingArea}
> > 
> >
> > 
> > 
> > 
> > org.apache.maven.plugins
> > maven-dependency-plugin
> > 3.1.1
> > 
> > 
> > 
> >
> > 
> > 
> > ${project.groupId}
> > 1st_ISO_here.iso
> > ${project.version}
> > iso
> > 
> > 
> > ${project.groupId}
> > 2nd_ISO_here.iso
> > ${project.version}
> > iso
> > 
> > 
> > 
> >
> > You would call this with mvn dependency:copy-dependencies instead of
> > mvn dependency:copy
> >
> > Greg Chabala
> >
> > On Tue, Jul 27, 2021 at 10:32 AM christopher.mil...@gd-ms.com <
> > christopher.mil...@gd-ms.com> wrote:
> >
> > >
> > >
> > > Thanks for the help on this as it was very helpful.
> > >
> > > All I needed was the following tag:
> > > ${depStagingArea}
> > >
> > > This places the multiple ISOs under the correct directory in RHEL OS
> > > where it was defined under the following tag:
> > > /dropbox/foo
> > >
> > >
> > >
> > >
> > > -Original Message-
> > > From: Nick Stolwijk 
> > > Sent: Monday, July 26, 2021 4:18 PM
> > > To: Maven Users List 
> > > Subject: Re: Questions on what xml tags to use for pom.xml file for
> > > downl

RE: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-28 Thread christopher.mil...@gd-ms.com


Okay, so I'll stay with what I have. 

Do you have any recommendations on where to get more up to speed on Maven?   
Like I said earlier, I've been watching some videos on youtube, still not 
getting some of the concepts being put forth. 

Thanks



-Original Message-
From: Greg Chabala  
Sent: Tuesday, July 27, 2021 4:10 PM
To: Maven Users List 
Subject: Re: Questions on what xml tags to use for pom.xml file for downloading 
isos


External E-mail --- CAUTION: This email originated from outside GDMS. Do not 
click links or open attachments unless you recognize the sender and know the 
content is safe.

If it works, it works. It sounds like you're not really using Maven to build 
software in this case, you're only using (or abusing) it to download binaries.

If the binaries you were downloading were actually libraries that Maven was 
using to compile software against, it would be more conventional for them to be 
in the dependency section.

On Tue, Jul 27, 2021 at 2:53 PM christopher.mil...@gd-ms.com < 
christopher.mil...@gd-ms.com> wrote:

>
> Thanks for the write up.
>
> I'm watching a few videos on youtube, trying to understand the pros of 
> using Dependencies and I'm still not understanding, Vs what I have 
> currently mark up tags that pertain to the ISOs that I want to 
> download under  and  tags.
>
>
>
> -Original Message-
> From: Greg Chabala 
> Sent: Tuesday, July 27, 2021 1:31 PM
> To: Maven Users List 
> Subject: Re: Questions on what xml tags to use for pom.xml file for 
> downloading isos
>
> 
> External E-mail --- CAUTION: This email originated from outside GDMS. 
> Do not click links or open attachments unless you recognize the sender 
> and know the content is safe.
>
> Sounds like you're all set, but as you asked for an example with the 
> dependencies tag:
>
>   xmlns="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
>
> Software_Release_Here
> Software_Program_Here
> Version_Number_Here
>
> 
> /dropbox/foo
> ${depStagingArea}
> 
>
> 
> 
> 
> org.apache.maven.plugins
> maven-dependency-plugin
> 3.1.1
> 
> 
> 
>
> 
> 
> ${project.groupId}
> 1st_ISO_here.iso
> ${project.version}
> iso
> 
> 
> ${project.groupId}
> 2nd_ISO_here.iso
> ${project.version}
> iso
> 
> 
> 
>
> You would call this with mvn dependency:copy-dependencies instead of 
> mvn dependency:copy
>
> Greg Chabala
>
> On Tue, Jul 27, 2021 at 10:32 AM christopher.mil...@gd-ms.com < 
> christopher.mil...@gd-ms.com> wrote:
>
> >
> >
> > Thanks for the help on this as it was very helpful.
> >
> > All I needed was the following tag:
> > ${depStagingArea}
> >
> > This places the multiple ISOs under the correct directory in RHEL OS 
> > where it was defined under the following tag:
> > /dropbox/foo
> >
> >
> >
> >
> > -Original Message-
> > From: Nick Stolwijk 
> > Sent: Monday, July 26, 2021 4:18 PM
> > To: Maven Users List 
> > Subject: Re: Questions on what xml tags to use for pom.xml file for 
> > downloading isos
> >
> > 
> > External E-mail --- CAUTION: This email originated from outside GDMS.
> > Do not click links or open attachments unless you recognize the 
> > sender and know the content is safe.
> >
> > Hi,
> >
> > I think you need to fix the parameter resolution:
> > ${depStagingArea/pcs} should be ${depStagingArea}/pcs
> >
> > Hth,
> >
> > Nick Stolwijk
> >
> > ~~~ Try to leave this world a little better than you found it and, 
> > when your turn comes to die, you can die happy in feeling that at 
> > any rate you have not wasted your time but have done your best ~~~
> >
> > Lord Baden-Powell
> >
> >
> > On Mon, Jul 26, 2021 at 9:28 PM christopher.mil...@gd-ms.com < 
> > christopher.mil...@gd-ms.com> wrote:
> >
> > >
> > >
> > > Hi, first post here.  I'm new to Maven and its been quite some 
> > > time since I've used XML.
> > >
> > > We are trying to using Maven to either upload and download 
> > &

Re: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-27 Thread Greg Chabala
If it works, it works. It sounds like you're not really using Maven to
build software in this case, you're only using (or abusing) it to download
binaries.

If the binaries you were downloading were actually libraries that Maven was
using to compile software against, it would be more conventional for them
to be in the dependency section.

On Tue, Jul 27, 2021 at 2:53 PM christopher.mil...@gd-ms.com <
christopher.mil...@gd-ms.com> wrote:

>
> Thanks for the write up.
>
> I'm watching a few videos on youtube, trying to understand the pros of
> using Dependencies and I'm still not understanding, Vs what I have
> currently mark up tags that pertain to the ISOs that I want to download
> under  and  tags.
>
>
>
> -Original Message-
> From: Greg Chabala 
> Sent: Tuesday, July 27, 2021 1:31 PM
> To: Maven Users List 
> Subject: Re: Questions on what xml tags to use for pom.xml file for
> downloading isos
>
> 
> External E-mail --- CAUTION: This email originated from outside GDMS. Do
> not click links or open attachments unless you recognize the sender and
> know the content is safe.
>
> Sounds like you're all set, but as you asked for an example with the
> dependencies tag:
>
> 
> 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
>
> Software_Release_Here
> Software_Program_Here
> Version_Number_Here
>
> 
> /dropbox/foo
> ${depStagingArea}
> 
>
> 
> 
> 
> org.apache.maven.plugins
> maven-dependency-plugin
> 3.1.1
> 
> 
> 
>
> 
> 
> ${project.groupId}
> 1st_ISO_here.iso
> ${project.version}
> iso
> 
> 
> ${project.groupId}
> 2nd_ISO_here.iso
> ${project.version}
> iso
> 
> 
> 
>
> You would call this with mvn dependency:copy-dependencies instead of mvn
> dependency:copy
>
> Greg Chabala
>
> On Tue, Jul 27, 2021 at 10:32 AM christopher.mil...@gd-ms.com <
> christopher.mil...@gd-ms.com> wrote:
>
> >
> >
> > Thanks for the help on this as it was very helpful.
> >
> > All I needed was the following tag:
> > ${depStagingArea}
> >
> > This places the multiple ISOs under the correct directory in RHEL OS
> > where it was defined under the following tag:
> > /dropbox/foo
> >
> >
> >
> >
> > -Original Message-
> > From: Nick Stolwijk 
> > Sent: Monday, July 26, 2021 4:18 PM
> > To: Maven Users List 
> > Subject: Re: Questions on what xml tags to use for pom.xml file for
> > downloading isos
> >
> > 
> > External E-mail --- CAUTION: This email originated from outside GDMS.
> > Do not click links or open attachments unless you recognize the sender
> > and know the content is safe.
> >
> > Hi,
> >
> > I think you need to fix the parameter resolution:
> > ${depStagingArea/pcs} should be ${depStagingArea}/pcs
> >
> > Hth,
> >
> > Nick Stolwijk
> >
> > ~~~ Try to leave this world a little better than you found it and,
> > when your turn comes to die, you can die happy in feeling that at any
> > rate you have not wasted your time but have done your best ~~~
> >
> > Lord Baden-Powell
> >
> >
> > On Mon, Jul 26, 2021 at 9:28 PM christopher.mil...@gd-ms.com <
> > christopher.mil...@gd-ms.com> wrote:
> >
> > >
> > >
> > > Hi, first post here.  I'm new to Maven and its been quite some time
> > > since I've used XML.
> > >
> > > We are trying to using Maven to either upload and download artifacts
> > > from a Nexus repository Vs doing it manually.
> > >
> > > I've been trying various things, until I got the following to
> > > finally work for a multi iso download from a Nexus repo that we have
> inhouse:
> > >
> > >
> > >
> > >   > > xmlns=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<
> > >

RE: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-27 Thread christopher.mil...@gd-ms.com


Thanks for the write up.  

I'm watching a few videos on youtube, trying to understand the pros of using 
Dependencies and I'm still not understanding, Vs what I have currently mark up 
tags that pertain to the ISOs that I want to download under  and 
 tags. 



-Original Message-
From: Greg Chabala  
Sent: Tuesday, July 27, 2021 1:31 PM
To: Maven Users List 
Subject: Re: Questions on what xml tags to use for pom.xml file for downloading 
isos


External E-mail --- CAUTION: This email originated from outside GDMS. Do not 
click links or open attachments unless you recognize the sender and know the 
content is safe.

Sounds like you're all set, but as you asked for an example with the 
dependencies tag:


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

Software_Release_Here
Software_Program_Here
Version_Number_Here


/dropbox/foo
${depStagingArea}





org.apache.maven.plugins
maven-dependency-plugin
3.1.1






${project.groupId}
1st_ISO_here.iso
${project.version}
iso


${project.groupId}
2nd_ISO_here.iso
${project.version}
iso




You would call this with mvn dependency:copy-dependencies instead of mvn 
dependency:copy

Greg Chabala

On Tue, Jul 27, 2021 at 10:32 AM christopher.mil...@gd-ms.com < 
christopher.mil...@gd-ms.com> wrote:

>
>
> Thanks for the help on this as it was very helpful.
>
> All I needed was the following tag:
> ${depStagingArea}
>
> This places the multiple ISOs under the correct directory in RHEL OS 
> where it was defined under the following tag:
> /dropbox/foo
>
>
>
>
> -Original Message-
> From: Nick Stolwijk 
> Sent: Monday, July 26, 2021 4:18 PM
> To: Maven Users List 
> Subject: Re: Questions on what xml tags to use for pom.xml file for 
> downloading isos
>
> 
> External E-mail --- CAUTION: This email originated from outside GDMS. 
> Do not click links or open attachments unless you recognize the sender 
> and know the content is safe.
>
> Hi,
>
> I think you need to fix the parameter resolution: 
> ${depStagingArea/pcs} should be ${depStagingArea}/pcs
>
> Hth,
>
> Nick Stolwijk
>
> ~~~ Try to leave this world a little better than you found it and, 
> when your turn comes to die, you can die happy in feeling that at any 
> rate you have not wasted your time but have done your best ~~~
>
> Lord Baden-Powell
>
>
> On Mon, Jul 26, 2021 at 9:28 PM christopher.mil...@gd-ms.com < 
> christopher.mil...@gd-ms.com> wrote:
>
> >
> >
> > Hi, first post here.  I'm new to Maven and its been quite some time 
> > since I've used XML.
> >
> > We are trying to using Maven to either upload and download artifacts 
> > from a Nexus repository Vs doing it manually.
> >
> > I've been trying various things, until I got the following to 
> > finally work for a multi iso download from a Nexus repo that we have 
> > inhouse:
> >
> >
> >
> >   > xmlns=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<
> > http://maven.apache.org/POM/4.0.0%20http:/maven.apache.org/xsd/maven
> > -4
> > .0.0.xsd
> > >>
> >
> >   4.0.0
> >
> >   Software_Release_Here
> >   Software_Program_Here
> >   Version_Number_Here
> >
> > 
> >
> > /dropbox/
> > 1st_ISO_here.iso
> > 2nd_ISO_here.iso
> >
> > 
> >
> >   
> > 
> >   
> > org.apache.maven.plugins
> > maven-dependency-plugin
> > 2.8
> >   
> > 
> >   
> >   ${project.groupId}
> >   1st_ISO_here.iso
> >   ${project.version}
> >   iso
> >   iso
> >   ${depStagingArea/pcs}
> >   ${downloadFilename1}
> >   
> >   
> >   ${project.groupId}
> >   2nd_ISO_here.iso
> >   ${project.version}
> >   iso
> >   iso
> 

Re: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-27 Thread Greg Chabala
Sounds like you're all set, but as you asked for an example with the
dependencies tag:


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

Software_Release_Here
Software_Program_Here
Version_Number_Here


/dropbox/foo
${depStagingArea}





org.apache.maven.plugins
maven-dependency-plugin
3.1.1






${project.groupId}
1st_ISO_here.iso
${project.version}
iso


${project.groupId}
2nd_ISO_here.iso
${project.version}
iso




You would call this with mvn dependency:copy-dependencies instead of mvn
dependency:copy

Greg Chabala

On Tue, Jul 27, 2021 at 10:32 AM christopher.mil...@gd-ms.com <
christopher.mil...@gd-ms.com> wrote:

>
>
> Thanks for the help on this as it was very helpful.
>
> All I needed was the following tag:
> ${depStagingArea}
>
> This places the multiple ISOs under the correct directory in RHEL OS where
> it was defined under the following tag:
> /dropbox/foo
>
>
>
>
> -Original Message-
> From: Nick Stolwijk 
> Sent: Monday, July 26, 2021 4:18 PM
> To: Maven Users List 
> Subject: Re: Questions on what xml tags to use for pom.xml file for
> downloading isos
>
> 
> External E-mail --- CAUTION: This email originated from outside GDMS. Do
> not click links or open attachments unless you recognize the sender and
> know the content is safe.
>
> Hi,
>
> I think you need to fix the parameter resolution: ${depStagingArea/pcs}
> should be ${depStagingArea}/pcs
>
> Hth,
>
> Nick Stolwijk
>
> ~~~ Try to leave this world a little better than you found it and, when
> your turn comes to die, you can die happy in feeling that at any rate you
> have not wasted your time but have done your best ~~~
>
> Lord Baden-Powell
>
>
> On Mon, Jul 26, 2021 at 9:28 PM christopher.mil...@gd-ms.com <
> christopher.mil...@gd-ms.com> wrote:
>
> >
> >
> > Hi, first post here.  I'm new to Maven and its been quite some time
> > since I've used XML.
> >
> > We are trying to using Maven to either upload and download artifacts
> > from a Nexus repository Vs doing it manually.
> >
> > I've been trying various things, until I got the following to finally
> > work for a multi iso download from a Nexus repo that we have inhouse:
> >
> >
> >
> >   > xmlns=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<
> > http://maven.apache.org/POM/4.0.0%20http:/maven.apache.org/xsd/maven-4
> > .0.0.xsd
> > >>
> >
> >   4.0.0
> >
> >   Software_Release_Here
> >   Software_Program_Here
> >   Version_Number_Here
> >
> > 
> >
> > /dropbox/
> > 1st_ISO_here.iso
> > 2nd_ISO_here.iso
> >
> > 
> >
> >   
> > 
> >   
> > org.apache.maven.plugins
> > maven-dependency-plugin
> > 2.8
> >   
> > 
> >   
> >   ${project.groupId}
> >   1st_ISO_here.iso
> >   ${project.version}
> >   iso
> >   iso
> >   ${depStagingArea/pcs}
> >   ${downloadFilename1}
> >   
> >   
> >   ${project.groupId}
> >   2nd_ISO_here.iso
> >   ${project.version}
> >   iso
> >   iso
> >   ${depStagingArea/pcs}
> >   ${downloadFilename2}
> >   
> > 
> >   
> >   
> > 
> >   
> >
> >   
> >
> >
> >
> > Also, when I run this, the isos are downloaded to ~/software/xml/poms,
> > when I've specified markup tags for
> > /dropbox/.  Not sure why its working
> > like this.
> >
> > Thanks
> >
> >
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>


RE: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-27 Thread christopher.mil...@gd-ms.com



Thanks for the help on this as it was very helpful.  

All I needed was the following tag:  
${depStagingArea}

This places the multiple ISOs under the correct directory in RHEL OS where it 
was defined under the following tag:  
/dropbox/foo




-Original Message-
From: Nick Stolwijk  
Sent: Monday, July 26, 2021 4:18 PM
To: Maven Users List 
Subject: Re: Questions on what xml tags to use for pom.xml file for downloading 
isos


External E-mail --- CAUTION: This email originated from outside GDMS. Do not 
click links or open attachments unless you recognize the sender and know the 
content is safe.

Hi,

I think you need to fix the parameter resolution: ${depStagingArea/pcs} should 
be ${depStagingArea}/pcs

Hth,

Nick Stolwijk

~~~ Try to leave this world a little better than you found it and, when your 
turn comes to die, you can die happy in feeling that at any rate you have not 
wasted your time but have done your best ~~~

Lord Baden-Powell


On Mon, Jul 26, 2021 at 9:28 PM christopher.mil...@gd-ms.com < 
christopher.mil...@gd-ms.com> wrote:

>
>
> Hi, first post here.  I'm new to Maven and its been quite some time 
> since I've used XML.
>
> We are trying to using Maven to either upload and download artifacts 
> from a Nexus repository Vs doing it manually.
>
> I've been trying various things, until I got the following to finally 
> work for a multi iso download from a Nexus repo that we have inhouse:
>
>
>
>   xmlns=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<
> http://maven.apache.org/POM/4.0.0%20http:/maven.apache.org/xsd/maven-4
> .0.0.xsd
> >>
>
>   4.0.0
>
>   Software_Release_Here
>   Software_Program_Here
>   Version_Number_Here
>
> 
>
> /dropbox/
> 1st_ISO_here.iso
> 2nd_ISO_here.iso
>
> 
>
>   
> 
>   
> org.apache.maven.plugins
> maven-dependency-plugin
> 2.8
>   
> 
>   
>   ${project.groupId}
>   1st_ISO_here.iso
>   ${project.version}
>   iso
>   iso
>   ${depStagingArea/pcs}
>   ${downloadFilename1}
>   
>   
>   ${project.groupId}
>   2nd_ISO_here.iso
>   ${project.version}
>   iso
>   iso
>   ${depStagingArea/pcs}
>   ${downloadFilename2}
>   
> 
>   
>   
> 
>   
>
>   
>
>
>
> Also, when I run this, the isos are downloaded to ~/software/xml/poms, 
> when I've specified markup tags for 
> /dropbox/.  Not sure why its working 
> like this.
>
> Thanks
>
>
>
>

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



RE: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-27 Thread christopher.mil...@gd-ms.com



Sorry, forgot to include the mvn command I'm running to download all of the 
ISOs: 


mvn dependency:copy -f multi_iso_downloader_pom_modified.xml -s  
~/.m2/settings.xml 


Do you have an example I can reference artifacts that are defined in a top 
level  tag? 

thanks



-Original Message-
From: Greg Chabala  
Sent: Monday, July 26, 2021 5:56 PM
To: Maven Users List 
Subject: Re: Questions on what xml tags to use for pom.xml file for downloading 
isos


External E-mail --- CAUTION: This email originated from outside GDMS. Do not 
click links or open attachments unless you recognize the sender and know the 
content is safe.

I agree with NIck's suggestion on fixing the property names.

Also, when I run this, the isos are ...
>

When you run what? Your exact command invocation would help. A pom.xml does not 
run like a script, it is shared configuration for any number of plugin 
invocations.

Your configuration of artifacts within the dependency plugin is unusual.
Typically, your artifacts would be defined in a top level  tag.

Greg Chabala

On Mon, Jul 26, 2021 at 3:18 PM Nick Stolwijk 
wrote:

> Hi,
>
> I think you need to fix the parameter resolution: 
> ${depStagingArea/pcs} should be ${depStagingArea}/pcs
>
> Hth,
>
> Nick Stolwijk
>
> ~~~ Try to leave this world a little better than you found it and, 
> when your turn comes to die, you can die happy in feeling that at any 
> rate you have not wasted your time but have done your best ~~~
>
> Lord Baden-Powell
>
>
> On Mon, Jul 26, 2021 at 9:28 PM christopher.mil...@gd-ms.com < 
> christopher.mil...@gd-ms.com> wrote:
>
> >
> >
> > Hi, first post here.  I'm new to Maven and its been quite some time 
> > since I've used XML.
> >
> > We are trying to using Maven to either upload and download artifacts 
> > from a Nexus repository Vs doing it manually.
> >
> > I've been trying various things, until I got the following to 
> > finally
> work
> > for a multi iso download from a Nexus repo that we have inhouse:
> >
> >
> >
> >   > xmlns=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<
> >
> http://maven.apache.org/POM/4.0.0%20http:/maven.apache.org/xsd/maven-4
> .0.0.xsd
> > >>
> >
> >   4.0.0
> >
> >   Software_Release_Here
> >   Software_Program_Here
> >   Version_Number_Here
> >
> > 
> >
> > /dropbox/
> > 1st_ISO_here.iso
> > 2nd_ISO_here.iso
> >
> > 
> >
> >   
> > 
> >   
> > org.apache.maven.plugins
> > maven-dependency-plugin
> > 2.8
> >   
> > 
> >   
> >   ${project.groupId}
> >   1st_ISO_here.iso
> >   ${project.version}
> >   iso
> >   iso
> >   ${depStagingArea/pcs}
> >   ${downloadFilename1}
> >   
> >   
> >   ${project.groupId}
> >   2nd_ISO_here.iso
> >   ${project.version}
> >   iso
> >   iso
> >   ${depStagingArea/pcs}
> >   ${downloadFilename2}
> >   
> > 
> >   
> >   
> > 
> >   
> >
> >   
> >
> >
> >
> > Also, when I run this, the isos are downloaded to 
> > ~/software/xml/poms, when I've specified markup tags for 
> > /dropbox/.  Not sure why its 
> > working
> like
> > this.
> >
> > Thanks
> >
> >
> >
> >
>

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-26 Thread Delany
Did you try with this first?
https://github.com/maven-download-plugin/maven-download-plugin
Delany

On Mon, 26 Jul 2021 at 21:27, christopher.mil...@gd-ms.com <
christopher.mil...@gd-ms.com> wrote:

>
>
> Hi, first post here.  I'm new to Maven and its been quite some time since
> I've used XML.
>
> We are trying to using Maven to either upload and download artifacts from
> a Nexus repository Vs doing it manually.
>
> I've been trying various things, until I got the following to finally work
> for a multi iso download from a Nexus repo that we have inhouse:
>
>
>
> 
> 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<
> http://maven.apache.org/POM/4.0.0%20http:/maven.apache.org/xsd/maven-4.0.0.xsd
> >>
>
>   4.0.0
>
>   Software_Release_Here
>   Software_Program_Here
>   Version_Number_Here
>
> 
>
> /dropbox/
> 1st_ISO_here.iso
> 2nd_ISO_here.iso
>
> 
>
>   
> 
>   
> org.apache.maven.plugins
> maven-dependency-plugin
> 2.8
>   
> 
>   
>   ${project.groupId}
>   1st_ISO_here.iso
>   ${project.version}
>   iso
>   iso
>   ${depStagingArea/pcs}
>   ${downloadFilename1}
>   
>   
>   ${project.groupId}
>   2nd_ISO_here.iso
>   ${project.version}
>   iso
>   iso
>   ${depStagingArea/pcs}
>   ${downloadFilename2}
>   
> 
>   
>   
> 
>   
>
>   
>
>
>
> Also, when I run this, the isos are downloaded to ~/software/xml/poms,
> when I've specified markup tags for
> /dropbox/.  Not sure why its working like
> this.
>
> Thanks
>
>
>
>


Re: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-26 Thread Greg Chabala
I agree with NIck's suggestion on fixing the property names.

Also, when I run this, the isos are ...
>

When you run what? Your exact command invocation would help. A pom.xml does
not run like a script, it is shared configuration for any number of plugin
invocations.

Your configuration of artifacts within the dependency plugin is unusual.
Typically, your artifacts would be defined in a top level 
tag.

Greg Chabala

On Mon, Jul 26, 2021 at 3:18 PM Nick Stolwijk 
wrote:

> Hi,
>
> I think you need to fix the parameter resolution: ${depStagingArea/pcs}
> should be ${depStagingArea}/pcs
>
> Hth,
>
> Nick Stolwijk
>
> ~~~ Try to leave this world a little better than you found it and, when
> your turn comes to die, you can die happy in feeling that at any rate you
> have not wasted your time but have done your best ~~~
>
> Lord Baden-Powell
>
>
> On Mon, Jul 26, 2021 at 9:28 PM christopher.mil...@gd-ms.com <
> christopher.mil...@gd-ms.com> wrote:
>
> >
> >
> > Hi, first post here.  I'm new to Maven and its been quite some time since
> > I've used XML.
> >
> > We are trying to using Maven to either upload and download artifacts from
> > a Nexus repository Vs doing it manually.
> >
> > I've been trying various things, until I got the following to finally
> work
> > for a multi iso download from a Nexus repo that we have inhouse:
> >
> >
> >
> > 
> > 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<
> >
> http://maven.apache.org/POM/4.0.0%20http:/maven.apache.org/xsd/maven-4.0.0.xsd
> > >>
> >
> >   4.0.0
> >
> >   Software_Release_Here
> >   Software_Program_Here
> >   Version_Number_Here
> >
> > 
> >
> > /dropbox/
> > 1st_ISO_here.iso
> > 2nd_ISO_here.iso
> >
> > 
> >
> >   
> > 
> >   
> > org.apache.maven.plugins
> > maven-dependency-plugin
> > 2.8
> >   
> > 
> >   
> >   ${project.groupId}
> >   1st_ISO_here.iso
> >   ${project.version}
> >   iso
> >   iso
> >   ${depStagingArea/pcs}
> >   ${downloadFilename1}
> >   
> >   
> >   ${project.groupId}
> >   2nd_ISO_here.iso
> >   ${project.version}
> >   iso
> >   iso
> >   ${depStagingArea/pcs}
> >   ${downloadFilename2}
> >   
> > 
> >   
> >   
> > 
> >   
> >
> >   
> >
> >
> >
> > Also, when I run this, the isos are downloaded to ~/software/xml/poms,
> > when I've specified markup tags for
> > /dropbox/.  Not sure why its working
> like
> > this.
> >
> > Thanks
> >
> >
> >
> >
>


Re: Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-26 Thread Nick Stolwijk
Hi,

I think you need to fix the parameter resolution: ${depStagingArea/pcs}
should be ${depStagingArea}/pcs

Hth,

Nick Stolwijk

~~~ Try to leave this world a little better than you found it and, when
your turn comes to die, you can die happy in feeling that at any rate you
have not wasted your time but have done your best ~~~

Lord Baden-Powell


On Mon, Jul 26, 2021 at 9:28 PM christopher.mil...@gd-ms.com <
christopher.mil...@gd-ms.com> wrote:

>
>
> Hi, first post here.  I'm new to Maven and its been quite some time since
> I've used XML.
>
> We are trying to using Maven to either upload and download artifacts from
> a Nexus repository Vs doing it manually.
>
> I've been trying various things, until I got the following to finally work
> for a multi iso download from a Nexus repo that we have inhouse:
>
>
>
> 
> 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<
> http://maven.apache.org/POM/4.0.0%20http:/maven.apache.org/xsd/maven-4.0.0.xsd
> >>
>
>   4.0.0
>
>   Software_Release_Here
>   Software_Program_Here
>   Version_Number_Here
>
> 
>
> /dropbox/
> 1st_ISO_here.iso
> 2nd_ISO_here.iso
>
> 
>
>   
> 
>   
> org.apache.maven.plugins
> maven-dependency-plugin
> 2.8
>   
> 
>   
>   ${project.groupId}
>   1st_ISO_here.iso
>   ${project.version}
>   iso
>   iso
>   ${depStagingArea/pcs}
>   ${downloadFilename1}
>   
>   
>   ${project.groupId}
>   2nd_ISO_here.iso
>   ${project.version}
>   iso
>   iso
>   ${depStagingArea/pcs}
>   ${downloadFilename2}
>   
> 
>   
>   
> 
>   
>
>   
>
>
>
> Also, when I run this, the isos are downloaded to ~/software/xml/poms,
> when I've specified markup tags for
> /dropbox/.  Not sure why its working like
> this.
>
> Thanks
>
>
>
>


Questions on what xml tags to use for pom.xml file for downloading isos

2021-07-26 Thread christopher.mil...@gd-ms.com


Hi, first post here.  I'm new to Maven and its been quite some time since I've 
used XML.

We are trying to using Maven to either upload and download artifacts from a 
Nexus repository Vs doing it manually.

I've been trying various things, until I got the following to finally work for 
a multi iso download from a Nexus repo that we have inhouse:




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

  Software_Release_Here
  Software_Program_Here
  Version_Number_Here



/dropbox/
1st_ISO_here.iso
2nd_ISO_here.iso



  

  
org.apache.maven.plugins
maven-dependency-plugin
2.8
  

  
  ${project.groupId}
  1st_ISO_here.iso
  ${project.version}
  iso
  iso
  ${depStagingArea/pcs}
  ${downloadFilename1}
  
  
  ${project.groupId}
  2nd_ISO_here.iso
  ${project.version}
  iso
  iso
  ${depStagingArea/pcs}
  ${downloadFilename2}
  

  
  

  

  



Also, when I run this, the isos are downloaded to ~/software/xml/poms, when 
I've specified markup tags for /dropbox/.  Not 
sure why its working like this.

Thanks