Re: Publish tar.gz file to Nexus

2019-02-24 Thread Ladislav Jech
Just being in same situation, I have some docker containers which are being used and configuration of multiple applications is being updated during time. I would like to export docker container into tar.xz and upload it to nexus as kind of latest available image. Will try this. On Saturday, Oct

Re: Publish tar.gz file to Nexus

2015-10-23 Thread Jason Tran
We end up using mvn deploy: mvn deploy:deploy-file -DgroupId=Home -DartifactId=RE -Dversion=0.0.0.1-SNAPSHOT -Dpackaging=tar.gz -DrepositoryId=Auc -Durl=http://nexus1.ccorp.com/nexus/content/repositories/snapshots -Dfile=RE-0.0.0.1-SNAPSHOT.tar.gz On Friday, October 16, 2015 at 6:53:57 PM UTC

Re: Publish tar.gz file to Nexus

2015-10-16 Thread Jason Tran
follow suggestion, I am using Assembly Plugin, but still having trouble create tar.gz for Directory RE *Here is my pom.xml:* 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.

Re: Publish tar.gz file to Nexus

2015-10-14 Thread Jason Tran
ok thanks! I guess I should re-post and clarify I am looking for solution within Jenkins. On Wednesday, October 14, 2015 at 1:40:06 PM UTC-7, David Karlsen wrote: > > Ah sorry - I just saw the one maven plugin mentioned and found the other > better IMHO alternative. > Yes - they are indeed maven

Re: Publish tar.gz file to Nexus

2015-10-14 Thread David Karlsen
Ah sorry - I just saw the one maven plugin mentioned and found the other better IMHO alternative. Yes - they are indeed maven plugins. 2015-10-14 22:29 GMT+02:00 Daniel Beck : > > On 14.10.2015, at 22:23, Jason Tran wrote: > > > I tried to search for these plugins under Available tab of Jenkins

Re: Publish tar.gz file to Nexus

2015-10-14 Thread Daniel Beck
On 14.10.2015, at 22:23, Jason Tran wrote: > I tried to search for these plugins under Available tab of Jenkins Manage > Plugins but couldn't find them. Are they appear as different names in Jenkins > plugin? They are Maven plugins. The proposed solutions are unrelated to Jenkins. -- You re

Re: Publish tar.gz file to Nexus

2015-10-14 Thread Jason Tran
I tried to search for these plugins under Available tab of Jenkins Manage Plugins but couldn't find them. Are they appear as different names in Jenkins plugin? Many thanks, On Wednesday, October 14, 2015 at 1:26:00 AM UTC-7, David Karlsen wrote: > > The assembly plugin is also an alternative:

Re: Publish tar.gz file to Nexus

2015-10-14 Thread David Karlsen
The assembly plugin is also an alternative: http://maven.apache.org/plugins/maven-assembly-plugin/ (which can do creation of the archive, as well as attach it to he build). 2015-10-14 9:59 GMT+02:00 Karl Heinz Marbaise : > Hi, > > simplest solution is to use build-helper-maven-plugin > > http://w

Re: Publish tar.gz file to Nexus

2015-10-14 Thread Karl Heinz Marbaise
Hi, simplest solution is to use build-helper-maven-plugin http://www.mojohaus.org/build-helper-maven-plugin/attach-artifact-mojo.html Kind regards Karl Heinz Marbaise On 10/14/15 1:07 AM, Jason Tran wrote: Hello there, This is problem I am trying to solve: 1. checkout code from Github to a l