You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Wim Deblauwe <wi...@gmail.com> on 2006/11/27 13:42:22 UTC

Maven and Sourceforge

Hi,

I started a wiki page to document the best-practises on using
Sourceforge.net with Maven:
http://docs.codehaus.org/display/MAVENUSER/MavenAndSourceforge

It is based on my experience with Maven2 and sourceforge for the development
of the vigilog project (http://vigilog.sourceforge.net)

Currently, it only has information on deploying your maven-generated website
to sourceforge. I will add info on file releases if I have done it.

all contributions are welcome!

regards,

Wim

Re: Maven and Sourceforge

Posted by Tom Huybrechts <to...@gmail.com>.
these are unix file permissions. The 3 digits are for the user, the
group and all users respectively, and you have 4 for reading, 2 for
writing and 1 for executing.

So 775 means read,write and execute for user and group, and read and
execute for others.
Not sure why you'd want the execute bit for plain files, but for
directories this means that you can go into them.

Tom

On 11/28/06, Wim Deblauwe <wi...@gmail.com> wrote:
> Ok, thanks for the input. Can you elaborate some on what "775" means, I can
> put that on the wiki then.
>
> regards,
>
> Wim
>
> 2006/11/27, Wendy Smoak <ws...@gmail.com>:
> >
> > On 11/27/06, Wim Deblauwe <wi...@gmail.com> wrote:
> >
> > > Where should I put this piece of xml? Is this part of the pom or the
> > > settings.xml?
> >
> > settings.xml, because it's developer specific (it has your userid and
> > password.)
> >
> > Then the <id> needs to match the one used in pom.xml so Maven will
> > know to use these settings.
> >
> > --
> > Wendy
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
>

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


Re: Maven and Sourceforge

Posted by Wim Deblauwe <wi...@gmail.com>.
Thanks for  the input, I've  updated the wiki page with it.

This is unix notation for file permissions:
>     r = 4 (read permission)
>     w = 2  (write permission)
>     x = 1 (execute permission)
> The first number is for user
> The second number is for group
> The third is for what's left ;-)
>
> So 7 = 4 + 2 + 1 = rwx
>      5 = 4 + 1 = r-x
>
> 775: means owning user can do anything, all users of the owning group
> can do anything, anybody else can read and execute.
>
> For more infos on unix file permissions :
> http://www.freeos.com/articles/3127/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Maven and Sourceforge

Posted by Emmanuel Hugonnet <eh...@orange-ft.com>.
Wim Deblauwe a écrit :
> Ok, thanks for the input. Can you elaborate some on what "775" means, 
> I can
> put that on the wiki then.
>
> regards,
>
> Wim
>
> 2006/11/27, Wendy Smoak <ws...@gmail.com>:
>>
>> On 11/27/06, Wim Deblauwe <wi...@gmail.com> wrote:
>>
>> > Where should I put this piece of xml? Is this part of the pom or the
>> > settings.xml?
>>
>> settings.xml, because it's developer specific (it has your userid and
>> password.)
>>
>> Then the <id> needs to match the one used in pom.xml so Maven will
>> know to use these settings.
>>
>> -- 
>> Wendy
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>
This is unix notation for file permissions:
    r = 4 (read permission)
    w = 2  (write permission)
    x = 1 (execute permission)
The first number is for user
The second number is for group
The third is for what's left ;-)

So 7 = 4 + 2 + 1 = rwx
     5 = 4 + 1 = r-x

775: means owning user can do anything, all users of the owning group 
can do anything, anybody else can read and execute.

For more infos on unix file permissions : 
http://www.freeos.com/articles/3127/

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


Re: Maven and Sourceforge

Posted by Wim Deblauwe <wi...@gmail.com>.
Ok, thanks for the input. Can you elaborate some on what "775" means, I can
put that on the wiki then.

regards,

Wim

2006/11/27, Wendy Smoak <ws...@gmail.com>:
>
> On 11/27/06, Wim Deblauwe <wi...@gmail.com> wrote:
>
> > Where should I put this piece of xml? Is this part of the pom or the
> > settings.xml?
>
> settings.xml, because it's developer specific (it has your userid and
> password.)
>
> Then the <id> needs to match the one used in pom.xml so Maven will
> know to use these settings.
>
> --
> Wendy
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Maven and Sourceforge

Posted by Wendy Smoak <ws...@gmail.com>.
On 11/27/06, Wim Deblauwe <wi...@gmail.com> wrote:

> Where should I put this piece of xml? Is this part of the pom or the
> settings.xml?

settings.xml, because it's developer specific (it has your userid and password.)

Then the <id> needs to match the one used in pom.xml so Maven will
know to use these settings.

-- 
Wendy

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


Re: Maven and Sourceforge

Posted by Wim Deblauwe <wi...@gmail.com>.
Where should I put this piece of xml? Is this part of the pom or the
settings.xml?

regards,

Wim

2006/11/27, Geoffrey De Smet <ge...@gmail.com>:
>
> Make sure to overwrite filePermissions and directoryPermissions
> if you want to allow other team mates to ever manage the site too.
>
> <servers>
>          <server>
>              <id>shell.sourceforge.net</id>
>              <username>xxx</username>
>              <password>xxx</password>
>              <filePermissions>775</filePermissions>
>              <directoryPermissions>775</directoryPermissions>
>          </server>
>      </servers>
>
> Wim Deblauwe wrote, On 2006-11-27 1:42 PM:
> > Hi,
> >
> > I started a wiki page to document the best-practises on using
> > Sourceforge.net with Maven:
> > http://docs.codehaus.org/display/MAVENUSER/MavenAndSourceforge
> >
> > It is based on my experience with Maven2 and sourceforge for the
> > development
> > of the vigilog project (http://vigilog.sourceforge.net)
> >
> > Currently, it only has information on deploying your maven-generated
> > website
> > to sourceforge. I will add info on file releases if I have done it.
> >
> > all contributions are welcome!
> >
> > regards,
> >
> > Wim
> >
>
> --
> With kind regards,
> Geoffrey De Smet
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Maven and Sourceforge

Posted by Geoffrey De Smet <ge...@gmail.com>.
Make sure to overwrite filePermissions and directoryPermissions
if you want to allow other team mates to ever manage the site too.

<servers>
         <server>
             <id>shell.sourceforge.net</id>
             <username>xxx</username>
             <password>xxx</password>
             <filePermissions>775</filePermissions>
             <directoryPermissions>775</directoryPermissions>
         </server>
     </servers>

Wim Deblauwe wrote, On 2006-11-27 1:42 PM:
> Hi,
> 
> I started a wiki page to document the best-practises on using
> Sourceforge.net with Maven:
> http://docs.codehaus.org/display/MAVENUSER/MavenAndSourceforge
> 
> It is based on my experience with Maven2 and sourceforge for the 
> development
> of the vigilog project (http://vigilog.sourceforge.net)
> 
> Currently, it only has information on deploying your maven-generated 
> website
> to sourceforge. I will add info on file releases if I have done it.
> 
> all contributions are welcome!
> 
> regards,
> 
> Wim
> 

-- 
With kind regards,
Geoffrey De Smet


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