Hi Benjamin,

You're right, deploy-web-live is really useful!
You can create a build.xml if it doesn't exist anymore in your project/bundle.
And in it, you can put something like :

<project name="MyProject" default="deploy-web-live">

 <property file="../build.properties" />
 <property name="JBOSS_DIR" value="/opt/jboss" />
 <property name="jboss.config" value="default" />
<property name="deploy.dir" value="${JBOSS_DIR}/server/${jboss.config}/deploy" />
 <property name="nuxeo.ear" value="nuxeo.ear" />

<target name="deploy-web-live" description="Deploy Web components to the live ECM">
   <copy todir="${deploy.dir}/${nuxeo.ear}/nuxeo.war">
     <fileset dir="${basedir}/src/main/resources/nuxeo.war/" />
   </copy>
 </target>

</project>

PS : You may want to adjust some variables, according to your needs...

Cheers

Benjamin a écrit :
Hi,

I was living in incredible world, It was so marvellous... but now all is down...
deploy-web-live doesn't work anymore :(
I can't live anymore...


Benjamin JALON

PS : Please, help me

_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm

_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm

Reply via email to