Quantcast

scm in pom

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

scm in pom

Henri Gomez
Hi to all,

I'm battling with Maven to release VirtualBox Plugin 0.5.0

In its pom, I could see (git-ssh and https)

<scm>
    <connection>scm:git:git://github.com/jenkinsci/virtualbox-plugin.git</connection>
    <developerConnection>scm:git:https://git@.../jenkinsci/virtualbox-plugin.git</developerConnection>
    <url>https://github.com/jenkinsci/virtualbox-plugin</url>
  </scm>

In Hosting plugin page
(https://wiki.jenkins-ci.org/display/JENKINS/Hosting+Plugins), there
is only git-ssh :

<scm>
    <connection>scm:git:ssh://github.com/jenkinsci/MYPLLUGINNAME.git</connection>
    <developerConnection>scm:git:ssh://[hidden email]/jenkinsci/MYPLUGINNAME.git</developerConnection>
    <url>https://github.com/jenkinsci/MYPLUGINNAME</url>
  </scm>

What should I use here ?

Thanks
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: scm in pom

Jesse Glick-4
On 09/21/2012 03:31 PM, Henri Gomez wrote:
>      <developerConnection>scm:git:ssh://[hidden email]/jenkinsci/MYPLUGINNAME.git</developerConnection>

This should be fine, or equivalently

<developerConnection>scm:git:[hidden email]:jenkinsci/MYPLUGINNAME.git</developerConnection>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: scm in pom

Olivier Lamy-2
In reply to this post by Henri Gomez
git-ssh except if you like type your password when pushing :-)

2012/9/21 Henri Gomez <[hidden email]>:

> Hi to all,
>
> I'm battling with Maven to release VirtualBox Plugin 0.5.0
>
> In its pom, I could see (git-ssh and https)
>
> <scm>
>     <connection>scm:git:git://github.com/jenkinsci/virtualbox-plugin.git</connection>
>     <developerConnection>scm:git:https://git@.../jenkinsci/virtualbox-plugin.git</developerConnection>
>     <url>https://github.com/jenkinsci/virtualbox-plugin</url>
>   </scm>
>
> In Hosting plugin page
> (https://wiki.jenkins-ci.org/display/JENKINS/Hosting+Plugins), there
> is only git-ssh :
>
> <scm>
>     <connection>scm:git:ssh://github.com/jenkinsci/MYPLLUGINNAME.git</connection>
>     <developerConnection>scm:git:ssh://[hidden email]/jenkinsci/MYPLUGINNAME.git</developerConnection>
>     <url>https://github.com/jenkinsci/MYPLUGINNAME</url>
>   </scm>
>
> What should I use here ?
>
> Thanks



--
Olivier Lamy
Talend: http://coders.talend.com
http://twitter.com/olamy | http://linkedin.com/in/olamy
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: scm in pom

Henri Gomez
In reply to this post by Jesse Glick-4
in https, maven will reclaim my log/pwd.

With ssh I won't have this problem :)

2012/9/21 Jesse Glick <[hidden email]>:
> On 09/21/2012 03:31 PM, Henri Gomez wrote:
>>
>>
>> <developerConnection>scm:git:ssh://[hidden email]/jenkinsci/MYPLUGINNAME.git</developerConnection>
>
>
> This should be fine, or equivalently
>
> <developerConnection>scm:git:[hidden email]:jenkinsci/MYPLUGINNAME.git</developerConnection>
Loading...