Re: make maven work in sun solaris 10

2008-10-07 Thread Patrizio Munzi
Hi, I've finally managed to make maven work on my sun solaris machine Since I haven't got either a proxy or a firewall to configure, I was strongly convicted that there were some DNS configuration to do. There you go... I just had to add the following to lines to the file: /etc/nsswitch.conf -

Re: make maven work in sun solaris 10

2008-10-07 Thread Daniele De Francesco
Hi, I experienced such an issue when rying to make maven work in a proxied environment... do you know whether there is a specific proxy configuration of that box or perhaps a firewall that you should take account for? If so...you know well how to get rid of the problem... -- Daniele De Francesc

Re: make maven work in sun solaris 10

2008-10-06 Thread Patrizio Munzi
Hi, I checked the file /etc/resolv.conf and it seems ok. Also the command: -- [EMAIL PROTECTED] ~]$ telnet repo1.maven.org 80 Trying 38.97.124.18... Connected to repo1.maven.org. Escape character is '^]'. ^C Co

Re: make maven work in sun solaris 10

2008-10-06 Thread Olivier Lamy
Hi, I use maven with solaris 10 all the day. Check the file : resolv.conf with the cli cat /etc/resolv.conf You should see something like ; try dns name server nameserver dns server ip nameserver secondary dns server ip And try the cli : bash-3.00$ telnet repo1.maven.org 80 Trying 38

Re: make maven work in sun solaris 10

2008-10-06 Thread Wayne Fay
Seems like your DNS resolution is not working properly. You need to talk to who ever your sysadmin is to get that fixed, and then Maven should work fine. And if *you* are the sysadmin of this box, you need to get help from a "Solaris beginners" forum to get your box set up and working on the Inter

Re: make maven work in sun solaris 10

2008-10-06 Thread 陈思淼
Maybe you should you mvnDebug intall to open a debug port on solaris. and use eclipse's remote debug function to debug the maven program.and you can know the detailed error message. or you can use mvn -X to display detailed message. 2008/10/7 Patrizio Munzi <[EMAIL PROTECTED]> > I already tried t

Re: make maven work in sun solaris 10

2008-10-06 Thread Patrizio Munzi
I already tried to ping repo1.maven.org and it worked. I know maven can work on solaris, I'm not a maven newbie, I 've been using it for a year. As I said I think it's a network configuration problem. I've already done any under my knowledge sun solaris network configurations but I still have t

Re: make maven work in sun solaris 10

2008-10-06 Thread 陈思淼
you can ping repo1.maven.org to verify the network working. Maven can work in Solaris of cause because that SUN's home platform. and maven is a java program. 2008/10/7 Patrizio Munzi <[EMAIL PROTECTED]> > Hi everybody, > > I've been trying to make maven work on SUN Solaris 10 for the last few > d

make maven work in sun solaris 10

2008-10-06 Thread Patrizio Munzi
Hi everybody, I've been trying to make maven work on SUN Solaris 10 for the last few days, but since I'm not a Solaris administration expert I had no luck. I have the following exception: Caused by: java.net.UnknownHostException: repo1.maven.org I think it's related to some Solaris network co