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 <[EMAIL PROTECTED]>:
On 11/27/06, Wim Deblauwe <[EMAIL PROTECTED]> 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]