Re: maven "deploy" keep asking me the password of scp connection

2007-11-13 Thread mailming
>From the build server use command console or shell, type "ssh user@" if the remoteserver is asking your password, that means your ssh connection is not setup correctly. Supposely you don't need to supply any password, which means "build server" is a trust of the "remote server". there are many

Re: Newbie: Maven need connection?

2007-10-31 Thread mailming
Only A number of maven plugin requires internet connections when proper artifacts and maven plugin already avaible in local repository. For Example: buildnumber plugin requires connections, when disable it, it can run without any option required. Wendy Smoak-3 wrote: > > On 10/31/07, PeterAU2

Re: Best combination

2007-10-31 Thread mailming
That combination should be OK. You also need continous integration tool such as Cruisecontrol(I am using), Continuum, or Bamboo(recommended by Jason van Zyl) raghu121 wrote: > > Hi, > > I want to start using maven, jira, confluence and other OSS products in my > OSS project which I intend to

Re: Install/Deploy an artifact with classifier

2007-10-31 Thread mailming
I revised the configuration, and turns out working perfect. I can just do mvn deploy without "-d" any config string. my email is [EMAIL PROTECTED] if any questions. maven-deploy-plugin

Re: HOW TO RUN MULTIPLE PACKAGING USING DIFFERENT ENV?

2007-10-30 Thread mailming
If we cannot specify different filter on multipackaging, then what is point packaging exactly same packages twice. Tim Kettler wrote: > > mailming schrieb: >> This is a great approach, and I do see the ear-plugin package twice. >> >> However, after server testing

Re: Install/Deploy an artifact with classifier

2007-10-30 Thread mailming
My work around solution is in the end of install specify deploy:deploy-file "mvn install deploy:deploy-file" Then in the pom specify maven-deploy-plugin 2.3

Re: HOW TO RUN MULTIPLE PACKAGING USING DIFFERENT ENV?

2007-10-23 Thread mailming
e packgings for, just copy the profile and > change the names accordingly and then invoke maven like this 'mvn > -Denv_alpha -Denv_beta package'. > > Note that the example uses the jar plugin but for an ear it works > exactly the same, just substitue the plugins. >

HOW TO RUN MULTIPLE PACKAGING USING DIFFERENT ENV?

2007-10-01 Thread mailming
I am trying to implement packaging multiple into multiple ear files using profile activation, using classifier. for example mvn package -DEnv=Alpha maven package into file-0.5-snapshot-alpha.ear and then mvn package -DEnv=Delta maven package into file-0.5-snapshot-delta.ear but I need