Re: Installing on Solaris

2015-11-06 Thread Greg Trasuk
I think Curtis has the right answer. And when you set JAVA_HOME, it should be pointing to the JDK, not the JRE installation - looks like that will be /export/home/e0857723/aaa_bonita/jdk17/jdk1.7.0_79 for you. Is it possible to have the admins upgrade the box to JDK7? Solaris has some

Re: Solaris

2015-11-06 Thread james pruett
I am installing maven on Solaris. (I am not confident of what shell I am in..) Anything I can think of is listed below. Thanks for helping! % echo $0 tcsh % env | grep SHELL SHELL=/bin/bash % set | grep -i shell shell /usr/bin/tcsh % env | grep JAVA JAVA_HOME=/usr % set | grep JAVA

Installing on Solaris

2015-11-06 Thread james pruett
Hi, I get this error. Any help appreciated. % mvn Error: could not find libjava.so Error: Could not find Java SE Runtime Environment. % env | grep -i CLASSPATH CLASSPATH=/export/home/e0857723/aaa_bonita/jdk17/jdk1.7.0_79/jre/lib/sparcv9 % ls -las $CLASSPATH/libjava.so 524 -rwxrwxrwx 1

Re: Installing on Solaris

2015-11-06 Thread Greg Trasuk
Hi James: Based on your class path, it looks like you installed the “Java Runtime Environment”. That’s just the Java virtual machine without the Java Compiler. Maven is going to need the Java Compiler, so you’ll need to get the Java SE version (Standard Edition, appears to be at

Re: Installing on Solaris

2015-11-06 Thread james pruett
Greg, thanks for that. Yes, I downloaded SE Solaris Sparc 64bit version from where you mentioned... Note I am not admin but I read that it should still be possible for me to run java from userspace. Q: I set my CLASSPATH, but perhaps incorrectly % env | grep CLASSPATH CLASSPATH=/export/home

Re: Installing on Solaris

2015-11-06 Thread Curtis Rueden
PM, james pruett <gpscru...@gmail.com> wrote: > Greg, thanks for that. > Yes, I downloaded SE Solaris Sparc 64bit version from where you > mentioned... > Note I am not admin but I read that it should still be possible for me to > run java from userspace. > > Q: I se

Re: Solaris

2015-11-04 Thread Stephen Connolly
FYI: You should be able to unpack the JDK into a user folder only and point at that On 4 November 2015 at 20:09, james pruett wrote: > thanks. > I gave up. I don't have admin rights and I read that installing jdk by just > unpacking a zip file won't work. > I just donated

Re: Solaris

2015-11-04 Thread Jochen Wiedmann
t; > Regards > Jeff > > On Wed, Nov 4, 2015 at 5:20 PM, james pruett <gpscru...@gmail.com> wrote: > >> Hi, >> >> I am compiling maven on Solaris. apache-maven-3.3-3.bin.tar.gz >> >> My environment is: >> >> echo $0 >> tcsh >&

Re: Solaris

2015-11-04 Thread Karl Heinz Marbaise
Hi, Maven 3.3.X needs Java 1.7 ... will not help... You need to stuck with Maven 3.2.5 ...or you need to install Java 7 and may be you need to configure toolchain... Kind regards Karl Heinz Marbaise On 11/4/15 8:12 PM, james pruett wrote: This is all I can figure out as to what pieces of

Re: Solaris

2015-11-04 Thread Karl Heinz Marbaise
Hi James, point JAVA_HOME to ...whatever/jdk1.7.0_79/ Kind regards Karl Heinz Marbaise On 11/4/15 8:27 PM, james pruett wrote: I downloaded jdk1.7 binaries for Sparc 64bit. $ find . -name bin ./jdk1.7.0_79/bin ./jdk1.7.0_79/jre/bin Q: Do I just point JAVA_HOME to one of those? Thanks

Re: Solaris

2015-11-04 Thread james pruett
thanks. I gave up. I don't have admin rights and I read that installing jdk by just unpacking a zip file won't work. I just donated to the apache foundation. I always tip! Jim On Wed, Nov 4, 2015 at 2:01 PM, Karl Heinz Marbaise wrote: > Hi James, > > point JAVA_HOME to

Re: Solaris

2015-11-04 Thread Karl Heinz Marbaise
Hi, On 11/4/15 7:55 PM, james pruett wrote: Hi again, I am trying to use maven from Solaris and get this error. Thanks for helping. -jim $ ../../maven/apache-maven-3.3.3/bin/mvn clearn install -f pom.xml -N Exception in thread "main" java.lang.UnsupportedClassVersionError: org/ap

Re: Solaris

2015-11-04 Thread james pruett
This is all I can figure out as to what pieces of java my box has... Thanks for helping! $/usr/bin/javac -version javac 1.6.0_91 $ /usr/bin/java -version java version "1.6.0_91" Java(TM) SE Runtime Environment (build 1.6.0_91-b13) Java HotSpot(TM) Server VM (build 20.91-b07, mixed mode) $ ls

Re: Solaris

2015-11-04 Thread james pruett
I downloaded jdk1.7 binaries for Sparc 64bit. $ find . -name bin ./jdk1.7.0_79/bin ./jdk1.7.0_79/jre/bin Q: Do I just point JAVA_HOME to one of those? Thanks again! jim

Solaris

2015-11-04 Thread james pruett
Hi, I am compiling maven on Solaris. apache-maven-3.3-3.bin.tar.gz My environment is: echo $0 tcsh I get this error /apache-maven-3.3.3/bin % ./mvn ./mvn: syntax error at line 200: `(' unexpected line 200 says: local basedir=($pwd) Any help appreciated! Jim

Re: Solaris

2015-11-04 Thread Jeff MAURY
Not sure the Maven scripts supports tcsh. Switch to bash if you can. Regards Jeff On Wed, Nov 4, 2015 at 5:20 PM, james pruett <gpscru...@gmail.com> wrote: > Hi, > > I am compiling maven on Solaris. apache-maven-3.3-3.bin.tar.gz > > My environment is: > > echo $0 &g

Re: Solaris

2015-11-04 Thread Dan Tran
you may want to link your /bin/sh to bash -D On Wed, Nov 4, 2015 at 8:20 AM, james pruett <gpscru...@gmail.com> wrote: > Hi, > > I am compiling maven on Solaris. apache-maven-3.3-3.bin.tar.gz > > My environment is: > > echo $0 > tcsh > > > I get this er

Re: Solaris

2015-11-04 Thread Andrew Todd
; you may want to link your /bin/sh to bash > > -D > > On Wed, Nov 4, 2015 at 8:20 AM, james pruett <gpscru...@gmail.com> wrote: > > > Hi, > > > > I am compiling maven on Solaris. apache-maven-3.3-3.bin.tar.gz > > > > My environment is: > >

Re: Solaris

2015-11-04 Thread james pruett
Hi again, I am trying to use maven from Solaris and get this error. Thanks for helping. -jim $ ../../maven/apache-maven-3.3.3/bin/mvn clearn install -f pom.xml -N Exception in thread "main" java.lang.UnsupportedClassVersionError: org/apache/maven/cli/MavenCli : Unsupported major.min

Solaris Packaging plugin

2013-06-19 Thread Carmella Carrigy Y
Hi All, I am just wondering what is the best maven plugin to use to create a .pkg for Solaris based maven builds I see a few different ideas on the web, unix plugin, maven assembly plugin... I am just wondering is anyone else doing this and in their experience which is the best way to do

mvn script doesn't work on solaris

2009-05-28 Thread _-°-TeNsHi-°-_ -
Plz... I need help. mvn precompiled (bin) doesn't work on solaris 8 SPARC. when I execute it, don't happen anything. I tried downloading maven source, but don't compile. this is the error when I try to compile. init: [echo] maven.home = /www/data/maven-2.0.9-src [echo

Re: mvn script doesn't work on solaris

2009-05-28 Thread Mick Knutson
IN: http://linkedin.com/in/mickknutson Vacation Rental: http://tahoe.baselogic.com --- On Thu, May 28, 2009 at 12:22 PM, _-°-TeNsHi-°-_ - ajpg1...@hotmail.comwrote: Plz... I need help. mvn precompiled (bin) doesn't work on solaris 8 SPARC. when I execute it, don't happen anything. I tried

Re: mvn script doesn't work on solaris

2009-05-28 Thread Mick Knutson
(bin) doesn't work on solaris 8 SPARC. when I execute it, don't happen anything. I tried downloading maven source, but don't compile. this is the error when I try to compile. init: [echo] maven.home = /www/data/maven-2.0.9-src [echo] maven.assembly = /www/data/apache-maven-2.1.0-M1

RE: mvn script doesn't work on solaris

2009-05-28 Thread _-°-TeNsHi-°-_ -
May 2009 12:55:50 -0400 Subject: Re: mvn script doesn't work on solaris From: mickknut...@gmail.com To: users@maven.apache.org 1. What is your JAVA_HOME and jdk version? 2. Can you run the same with the '-X' flag? --- Thank You… Mick Knutson, President BASE Logic, Inc. Enterprise

RE: mvn script doesn't work on solaris

2009-05-28 Thread _-°-TeNsHi-°-_ -
Silencio... Estoy investigando... ;) Date: Thu, 28 May 2009 12:57:49 -0400 Subject: Re: mvn script doesn't work on solaris From: mickknut...@gmail.com To: users@maven.apache.org Also, do NOT try to run inside the build directory. Go to another location or sandbox. One that has

RE: mvn script doesn't work on solaris

2009-05-28 Thread _-°-TeNsHi-°-_ -
Occidente Cali - Colombia Tel 3188000 ext 11085 Silencio... Estoy investigando... ;) Date: Thu, 28 May 2009 12:57:49 -0400 Subject: Re: mvn script doesn't work on solaris From: mickknut...@gmail.com To: users@maven.apache.org Also, do NOT try to run inside the build directory

Re: mvn script doesn't work on solaris

2009-05-28 Thread Mick Knutson
: mvn script doesn't work on solaris From: mickknut...@gmail.com To: users@maven.apache.org Also, do NOT try to run inside the build directory. Go to another location or sandbox. One that has permission to create files and folders by the user executing the mvn command. --- Thank

RE: mvn script doesn't work on solaris

2009-05-28 Thread Martin Gainty
peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. From: ajpg1...@hotmail.com To: users@maven.apache.org Subject: RE: mvn script doesn't work on solaris Date: Thu, 28 May 2009 19:49:34 + I am executing mvn as root

Problem with maven Solaris 8 SPARC

2009-05-26 Thread _-°-TeNsHi-°-_ -
Hello I am installing maven in solaris 8 SPARC, but don't work. When I try run mvn script from bin directory. Don't run and don't prompt any error. I tried with several versions of maven (binaries) 2.0.8 , 2.0.9, 2.0.10 and the same problem. Don't run the script. Then I downloaded

FW: Problem with maven Solaris 8 SPARC

2009-05-26 Thread _-°-TeNsHi-°-_ -
Hello I am installing maven in solaris 8 SPARC, but don't work. When I try run mvn script from bin directory. Don't run and don't prompt any error. I tried with several versions of maven (binaries) 2.0.8 , 2.0.9, 2.0.10 and the same problem. Don't run the script. Then I downloaded

Re: make maven work in sun solaris 10

2008-10-07 Thread Patrizio Munzi
) at org.apache.maven.wagon.providers.http.LightweightHttpWagon.fillInputData(LightweightHttpWagon.java:83) ... 22 more --- BR Patrizio Olivier Lamy wrote: Hi, I use maven with solaris 10 all the day. Check the file : resolv.conf with the cli cat /etc

Re: make maven work in sun solaris 10

2008-10-07 Thread Daniele De Francesco
--- BR Patrizio Olivier Lamy wrote: 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

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

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

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 days

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

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

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

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

Automatic startup of Continuum on Solaris 10.

2008-03-05 Thread Bård Lind
Hi folks. Does any of you have experience on setting up automatic startup of Continuum on Solaris 10 (in its own zone) Currenty I´m trying to use smf/svccfg/svcadm. What I´ve done so far is: -created a manifest file, running continumm as ci user -created a startup script, that calls bin/solaris

Re: Unable adding continuum in startup service [SOLARIS]

2008-02-26 Thread Emmanuel Venisse
What is your error? Emmanuel On Tue, Feb 26, 2008 at 6:59 AM, Tony.Cesc [EMAIL PROTECTED] wrote: Hi All, I have a problem when trying to auto start Continuum when my Solaris reboot. I do exactly as the guide in Continuum website: http://maven.apache.org/continuum/docs/1.1/installation

Re: Unable adding continuum in startup service [SOLARIS]

2008-02-26 Thread Tony.Cesc
I mean, the error is continuum doesn't start when reboot Solaris. Do you have any suggestion? Tony Emmanuel Venisse-2 wrote: What is your error? Emmanuel On Tue, Feb 26, 2008 at 6:59 AM, Tony.Cesc [EMAIL PROTECTED] wrote: Hi All, I have a problem when trying to auto start

Unable adding continuum in startup service [SOLARIS]

2008-02-25 Thread Tony.Cesc
Hi All, I have a problem when trying to auto start Continuum when my Solaris reboot. I do exactly as the guide in Continuum website: http://maven.apache.org/continuum/docs/1.1/installation/standalone.html But, it still doesn't effect. I don't know why. I did create the script as root access

Re: solaris package (pkg) support

2007-11-20 Thread deckrider
On Oct 17, 2007 5:00 PM, Dan Tran [EMAIL PROTECTED] wrote: could you try this http://mojo.codehaus.org/solaris-maven-plugin/ and give feed back? I couldn't get this to work. Looking through the docs as well as finding this subversion repository ... https://svn.codehaus.org/mojo/trunk

Re: solaris package (pkg) support

2007-11-19 Thread deckrider
Hi, what url do I put in my pom so that I can use this plugin? On Nov 12, 2007 1:03 PM, Joerg Hohwiller [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, sorry for catching up so late... Thanks for responding. I already know how to make Solaris packages

Re: [m2] error moving from windows to Solaris with xmlbeans

2007-11-16 Thread Mick Knutson
So, with further checking, it seems that when I do not specify a version, it was looking for 2.3.1 but the *stub *was not found. I then added the version to specify 2.3.0 and it works fine. What would cause this? Looking into my solaris local REPO, the 2.3.1 jar is there, but there is no pom

[m2] error moving from windows to Solaris with xmlbeans

2007-11-16 Thread Mick Knutson
I am trying to build an xmlbeans jar and I have the following working fine on windows but not on solaris now: plugin groupIdorg.codehaus.mojo/groupId artifactIdxmlbeans-maven-plugin/artifactId executions

Re: solaris package (pkg) support

2007-11-12 Thread Joerg Hohwiller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, sorry for catching up so late... Thanks for responding. I already know how to make Solaris packages, but I don't know how to integrate the process into my pom.xml. Someone posted a reference to a maven plugin that could create Solaris

How to copy a zip file to a solaris test server

2007-10-29 Thread Gunnar.Bostrom
Hi, I would like to copy a zip file to our test environment I use the maven-assembly-plugin to generate the zip file in the target directory. I use the wagon-maven-plugin to copy the files from the target directory to the tests environment. The problem is that there are two other files in the

Re: solaris package (pkg) support

2007-10-18 Thread deckrider
On 10/17/07, Graham Leggett [EMAIL PROTECTED] wrote: deckrider wrote: I need to generate a Solaris package (pkg) when building on Solaris (pkgadd format). I managed to reverse engineer the whole ritual you have to follow a while back to get solaris packages of APR and httpd. Look

Re: solaris package (pkg) support

2007-10-18 Thread Graham Leggett
On Thu, October 18, 2007 1:54 pm, deckrider wrote: Thanks for responding. I already know how to make Solaris packages, but I don't know how to integrate the process into my pom.xml. Someone posted a reference to a maven plugin that could create Solaris packages, but I couldn't find it when I

Re: solaris package (pkg) support

2007-10-18 Thread deckrider
On 10/17/07, Dan Tran [EMAIL PROTECTED] wrote: could you try this http://mojo.codehaus.org/solaris-maven-plugin/ and give feed back? Thanks, it looks interesting. I'll have to spend some time with it before being able to provide feedback

Re: solaris package (pkg) support

2007-10-18 Thread deckrider
On 10/18/07, Graham Leggett [EMAIL PROTECTED] wrote: On Thu, October 18, 2007 1:54 pm, deckrider wrote: Thanks for responding. I already know how to make Solaris packages, but I don't know how to integrate the process into my pom.xml. Someone posted a reference to a maven plugin

solaris package (pkg) support

2007-10-17 Thread deckrider
Hello from a Maven Newbie, I need to generate a Solaris package (pkg) when building on Solaris (pkgadd format). My first thoughts were of using the dir format of the maven-assembly-plugin and then somehow running a Unix shell script to create the package based on the contents of the assembled

solaris package (pkg) support

2007-10-17 Thread deckrider
Hello from a Maven Newbie, I need to generate a Solaris package (pkg) when building on Solaris (pkgadd format). My first thoughts were of using the dir format of the maven-assembly-plugin and then somehow running a Unix shell script to create the package based on the contents of the assembled

Re: solaris package (pkg) support

2007-10-17 Thread Graham Leggett
deckrider wrote: I need to generate a Solaris package (pkg) when building on Solaris (pkgadd format). I managed to reverse engineer the whole ritual you have to follow a while back to get solaris packages of APR and httpd. Look at the last few lines of this script, it will tell you what

Re: solaris package (pkg) support

2007-10-17 Thread Dan Tran
could you try this http://mojo.codehaus.org/solaris-maven-plugin/ and give feed back? -D On 10/17/07, Graham Leggett [EMAIL PROTECTED] wrote: deckrider wrote: I need to generate a Solaris package (pkg) when building on Solaris (pkgadd format). I managed to reverse engineer the whole

Re: System time problem in Solaris 10 environment (Ant + Continuum)

2007-07-12 Thread Otto Kolsi
LAMY Olivier wrote: Can you attached your simple ant file to http://jira.codehaus.org/browse/CONTINUUM-723 ? Just attached the Ant build file to that ticket. -- Otto

RE: System time problem in Solaris 10 environment (Ant + Continuum)

2007-07-12 Thread LAMY Olivier
: Re: System time problem in Solaris 10 environment (Ant + Continuum) LAMY Olivier wrote: Can you attached your simple ant file to http://jira.codehaus.org/browse/CONTINUUM-723 ? Just attached the Ant build file to that ticket. -- Otto This e-mail, any attachments and the information

RE: System time problem in Solaris 10 environment (Ant + Continuum)

2007-07-06 Thread LAMY Olivier
: System time problem in Solaris 10 environment (Ant + Continuum) LAMY Olivier wrote: Related to this one http://jira.codehaus.org/browse/CONTINUUM-723 ? Can you attached to this a simple ant test project ? It looks similar, but I'n not exactly sure. We've only used Ant builds so far, I'm

Re: System time problem in Solaris 10 environment (Ant + Continuum)

2007-07-06 Thread Emmanuel Venisse
Otto Kolsi a écrit : Emmanuel Venisse wrote: LAMY Olivier a écrit : I think somewhere here http://maven.zones.apache.org/ there are build from last trunk version (sorry don't remember the exact path). I'm sure Emmanuel know the exact path ? (Is this information available on the continuum web

RE: System time problem in Solaris 10 environment (Ant + Continuum)

2007-07-05 Thread LAMY Olivier
this on the current trunk) Can you test with current continuum trunk ? -- Olivier -Message d'origine- De : Otto Kolsi [mailto:[EMAIL PROTECTED] Envoyé : jeudi 5 juillet 2007 13:04 À : continuum-users@maven.apache.org Objet : System time problem in Solaris 10 environment (Ant + Continuum) Hi

strange trouble on solaris

2006-06-07 Thread Olivier Lamy
); FastDateFormat.getInstance( -MM-dd'T'HH:mm:ss.SSSZZ ).format(date); On windows+cygwin : 2001-05-28T12:00:00.000+02:00 On solaris with same user who start continuum exec junit with cli : 2001-05-28T12:00:00.000+02:00 The same junit with continuum says : 2001-05-28T12:00:00.000+00:00 Error says

Re: Cobertura under solaris

2006-05-26 Thread vadimsh
You are right , It was old jdk problem thanks a lot ! -- View this message in context: http://www.nabble.com/Cobertura+under+solaris-t1680318.html#a4571521 Sent from the Maven - Users forum at Nabble.com. - To unsubscribe, e

Cobertura under solaris

2006-05-25 Thread vadimsh
Hi, I use m2.0.4 and cobertura 2.0 for report generation. It works fine under windows , but under solaris i get follow error [INFO] [cobertura:instrument] [INFO] Cobertura 1.7 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file Instrumenting 30 classes to ../target/generated-classes

Re: Cobertura under solaris

2006-05-25 Thread Wayne Fay
You must have an older JDK installed on your server. Run java -fullversion on both machines and upgrade the Solaris JDK to the version you're running on Windows. Wayne On 5/25/06, vadimsh [EMAIL PROTECTED] wrote: Hi, I use m2.0.4 and cobertura 2.0 for report generation. It works fine under

Re: Cobertura under solaris

2006-05-25 Thread Pete Marvin King
I agree with wayne fay there's usually a default jdk installed on Solaris. try to verify your JAVA_HOME and PATH just to be sure. Wayne Fay wrote: You must have an older JDK installed on your server. Run java -fullversion on both machines and upgrade the Solaris JDK to the version

Maven producing NPE on Solaris, but not on Windows

2006-02-08 Thread Michael Böckling
I've got build setup with dependencyManagement, reports and all bells and whistles, and it works fine in windows. On Solaris however, I can't build any projects that have a packaging type other than pom (the pom types work ok). I thought I knew Maven, but I'm quite clueless about this one

Re: Problem with continuum on solaris zone

2006-01-17 Thread Sean Schofield
Thanks for the suggestions. ./run.sh worked fine on the zone (at least it appeared to.) It would only start as root though. Other users could not start it. Is this how you have it set up for the maven zone? Also, we could use some help with setting it up as a service in the solaris zone

Re: Problem with continuum on solaris zone

2006-01-16 Thread Emmanuel Venisse
Trygve Laugstøl a écrit : On Fri, 2006-01-13 at 09:14 -0500, Sean Schofield wrote: We're trying to setup continuum for the MyFaces project. We have a solaris zone set up and we're having trouble starting the server. $ bin/solaris/run.sh start Starting continuum... bin/solaris/run.sh

Re: Problem with continuum on solaris zone

2006-01-15 Thread Trygve Laugstøl
On Fri, 2006-01-13 at 09:14 -0500, Sean Schofield wrote: We're trying to setup continuum for the MyFaces project. We have a solaris zone set up and we're having trouble starting the server. $ bin/solaris/run.sh start Starting continuum... bin/solaris/run.sh: ./wrapper: cannot execute

RE: Exception running continuum on solaris

2005-12-14 Thread Mordo, Aviran (EXP N-NANNATEK)
See attached environment. Aviran http://www.aviransplace.com -Original Message- From: Mayorgaadame, Alex [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 13, 2005 5:34 PM To: continuum-users@maven.apache.org Subject: RE: Exception running continuum on solaris Aviran, Just

RE: Exception running continuum on solaris

2005-12-13 Thread Mordo, Aviran (EXP N-NANNATEK)
To: continuum-users@maven.apache.org Subject: RE: Exception running continuum on solaris I got the same exception. I also tried to remove the . From the path and it still does not work -Original Message- From: Mayorgaadame, Alex [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 13, 2005 3:13 PM

RE: Exception running continuum on solaris

2005-12-13 Thread Mayorgaadame, Alex
Aviran, Just for the record. Can you post your fixed env? I also use Solaris so it may be useful as a reference. Thanks and regards, Alex -Original Message- From: Mordo, Aviran (EXP N-NANNATEK) [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 13, 2005 4:52 PM To: continuum-users

Exception running continuum on solaris

2005-12-13 Thread Mordo, Aviran (EXP N-NANNATEK)
I'm trying to build a project using continuum on Solaris and I'm getting the following exception: org.apache.maven.continuum.execution.ContinuumBuildExecutorException: Error while executing shell command. The most common error is that 'mvn' is not in your path

Re: Exception running continuum on solaris

2005-12-13 Thread Emmanuel Venisse
: I'm trying to build a project using continuum on Solaris and I'm getting the following exception: org.apache.maven.continuum.execution.ContinuumBuildExecutorException: Error while executing shell command. The most common error is that 'mvn' is not in your path

RE: Exception running continuum on solaris

2005-12-13 Thread Mordo, Aviran (EXP N-NANNATEK)
Yes I do, I have the following line: -- (without the quotes) -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 13, 2005 11:42 AM To: Maven Users List Subject: Re: Exception running continuum on solaris the correct list is continuum-users

Re: Exception running continuum on solaris

2005-12-13 Thread Emmanuel Venisse
, 2005 11:42 AM To: Maven Users List Subject: Re: Exception running continuum on solaris the correct list is continuum-users@maven.apache.org ;-) It seems there is a bug in our command line util class (used too by maven 2.0.1) Do you have a line without '=' when you run env command? The problem

Re: Exception running continuum on solaris

2005-12-13 Thread Emmanuel Venisse
To: Maven Users List Subject: Re: Exception running continuum on solaris the correct list is continuum-users@maven.apache.org ;-) It seems there is a bug in our command line util class (used too by maven 2.0.1) Do you have a line without '=' when you run env command? The problem is with a substring

RE: Exception running continuum on solaris

2005-12-13 Thread Mordo, Aviran (EXP N-NANNATEK)
running continuum on solaris hmm, strange line. Do you know what is it? It isn't an environment variable Emmanuel Mordo, Aviran (EXP N-NANNATEK) a écrit : Yes I do, I have the following line: -- (without the quotes) -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED

Re: Exception running continuum on solaris

2005-12-13 Thread Emmanuel Venisse
PROTECTED] Sent: Tuesday, December 13, 2005 11:55 AM To: Maven Users List Subject: Re: Exception running continuum on solaris hmm, strange line. Do you know what is it? It isn't an environment variable Emmanuel Mordo, Aviran (EXP N-NANNATEK) a écrit : Yes I do, I have the following line

RE: Exception running continuum on solaris

2005-12-13 Thread Mordo, Aviran (EXP N-NANNATEK)
- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 13, 2005 12:08 PM To: Maven Users List Subject: Re: Exception running continuum on solaris so -- is part of previous line with a return carriage? Mordo, Aviran (EXP N-NANNATEK) a écrit : It is part of the SP1 env variable

Re: Exception running continuum on solaris

2005-12-13 Thread Emmanuel Venisse
Can you put your env result in a file and attach it to the issue? You have a space in a folder name under solaris!!! I thought it was only under windows. So, you need to remove line wrapper.java.additional.5.stripquotes=TRUE in bin/solaris/wrapper.conf (if you use the wrapper) Emmanuel

RE: Exception running continuum on solaris

2005-12-13 Thread Mordo, Aviran (EXP N-NANNATEK)
continuum on solaris Can you put your env result in a file and attach it to the issue? You have a space in a folder name under solaris!!! I thought it was only under windows. So, you need to remove line wrapper.java.additional.5.stripquotes=TRUE in bin/solaris/wrapper.conf (if you use the wrapper

RE: Exception running continuum on solaris

2005-12-13 Thread Mayorgaadame, Alex
-NANNATEK) [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 13, 2005 1:21 PM To: Maven Users List Subject: RE: Exception running continuum on solaris Sorry in I wasn't clear, the space in the path was under Windows where it failed to start. I attached the env file Aviran -Original Message

RE: Exception running continuum on solaris

2005-12-13 Thread Mordo, Aviran (EXP N-NANNATEK)
running continuum on solaris Can you try: PATH=$PATH:/usr/sbin:/usr/builduser/maven-2.0/bin:/usr/bin Instead of: PATH=.:/usr/sbin:/usr/builduser/maven-2.0/bin:/usr/bin And see if it does any good. I'm moving the discussion over to the Continuum List. Regards, Alex -Original Message

RE: Exception running continuum on solaris

2005-12-13 Thread Mordo, Aviran (EXP N-NANNATEK)
: Exception running continuum on solaris Can you try: PATH=$PATH:/usr/sbin:/usr/builduser/maven-2.0/bin:/usr/bin Instead of: PATH=.:/usr/sbin:/usr/builduser/maven-2.0/bin:/usr/bin And see if it does any good. I'm moving the discussion over to the Continuum List. Regards, Alex -Original Message

Re: Maven On Solaris : maven-1.0-beta-10

2003-07-28 Thread Keld Mikkelsen
Users List' [EMAIL PROTECTED] | |cc: (bcc: Keld Mikkelsen/IT/DK_GBJ/Grundfos) | | Subject: Maven On Solaris

Maven On Solaris : maven-1.0-beta-10

2003-07-25 Thread Bateman, Patrick eMEDIA
I'm running the same version of Maven on Windows and Solaris, and get the following exception stack on Solaris . sun.misc.InvalidJarIndexException: Invalid index! at sun.misc.URLClassPath$JarLoader.getResource(URLClassPath.java:594) at sun.misc.URLClassPath.getResource