Thanks to all who replied to my mails, but i'm still in trouble. For now, I'm not able to setup Eclipse correctly; but, having time, I can follow the istructions from Narcis.
So I decided to install from the command line. I got an error. This is the script I used, lauched from the directory called nuxeo-ep where i checked out from http://svn.nuxeo.org/nuxeo/nuxeo-ep/trunk The script I used is: _____________________________________________________________________________ #!/bin/bash # to be run in the directory where you have done the svn checkout echo "_________________________ svn update____________________________________________________" >deploy.log svn up >>deploy.log 2>&1 echo "_________________________ ant clean ____________________________________________________" >>deploy.log ant clean >>deploy.log 2>&1 echo "_________________________ mvn clean ____________________________________________________" >>deploy.log mvn clean >>deploy.log 2>&1 echo "_________________________ mvn install __________________________________________________" >>deploy.log mvn -Dmaven.test.skip=true install >>deploy.log 2>&1 echo "_________________________ ant __________________________________________________________" >>deploy.log ant >>deploy.log 2>&1 _____________________________________________________________________________ Executing this script all goes well until the deploy phase. The error reported in the last lines of the log are: _____________________________________________________________________________ deploy-tomcat-config: [xslt] Processing /opt/jboss/server/default/deploy/jbossweb-tomcat55.sar/server.xml to /MySw/Deb/Nuxeo/Eclipse/nuxeo-ep/org.nuxeo.ecm.webapp/out/tomcat55-server.xml [xslt] Loading stylesheet /MySw/Deb/Nuxeo/Eclipse/nuxeo-ep/org.nuxeo.ecm.webapp/resources/tomcat55-server.xsl [copy] Copying 1 file to /opt/jboss/server/default/deploy/jbossweb-tomcat55.sar update-jboss-myfaces-libraries: [echo] Updating jboss myfaces libraries... deploy-security-config: BUILD FAILED /MySw/Deb/Nuxeo/Eclipse/nuxeo-ep/build.xml:38: The following error occurred while executing this line: /MySw/Deb/Nuxeo/Eclipse/nuxeo-ep/org.nuxeo.ecm.webapp/build.xml:488: input file /opt/jboss/server/default/deploy/security.sar/META-INF/jboss-service.xml does not exist Total time: 3 minutes 9 seconds _____________________________________________________________________________ I looked into /opt/jboss/server/default/deploy/ but there is not a directory called security.sar What can I do? Mybe it is a jboss component not selected during jboss install? Thanks Mirto P.S. can I send the complete log to someone? Narcis Paslaru ha scritto: > Hi, > > That is because the switch to maven is not complete. We still use ant > for deployment. So what yous should do to deploy is from the command > line go to the root directory where you have all your projects ant > type "*ant*". Also if you have minor changes in your projects you > should drag an drop the build.xml file from that project into the ant > view and try to run "*standalone-deploy-ecm*". Sometimes you need to > restart JBoss in order to see your modifications, and sometimes even > redeploy the whole project from the root as I described before. > It takes more time but I'm sure it's just temporary :) > > Regards, > Narcis Paslaru _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
