-
Type: New Feature
-
Status: Resolved
-
Priority: Minor
-
Resolution: Won't Fix
-
Affects Version/s: None
-
Fix Version/s: 1.0
In dev mode, I use this script:
#!/bin/sh
JBOSS="/opt/jboss-4.2.3.GA"
NUXEO_WAR=$JBOSS"/server/default/deploy/nuxeo.ear/nuxeo.war"
for file in `ls -AR --ignore=$0` ;
do
echo "removing $file"
rm $NUXEO_WAR/$file
echo "linking ./$file to $NUXEO_WAR/$file"
ln ./$file $NUXEO_WAR/$file
done
When I run it in the src/main/resources/nuxeo.war of a module, it allows to link the .xhtml in my module in the deployed nuxeo. When facelets.REFRESH_PERIOD=2 is set, then change done in xhtml in eclipse are seen in jboss.
It would be nice to have something similar in NXIDE