build.xml:
Added 'eclipse' target that does a job similar to "mvn eclipse:eclipse".
In particular, there is not need to call the ignominious
cp -r build/classes/admin build/classes/messages .eclipse-build # then hit F5 in Eclipse
| | |
| | | description="Generate all the sources."> |
| | | </target> |
| | | |
| | | <!-- This target retrieves the libs, and generates the sources --> |
| | | <target name="eclipse" depends="resolve,generatesources,copymessages" |
| | | description="Set up all the files and directories required for the Eclipse project"> |
| | | <copy todir=".eclipse-build"> |
| | | <fileset dir="${classes.dir}"> |
| | | <include name="admin/**" /> |
| | | <include name="messages/**" /> |
| | | </fileset> |
| | | </copy> |
| | | <echo>Refresh the OpenDJ server project in Eclipse: Select the OpenDJ server project and press 'F5' key</echo> |
| | | </target> |
| | | |
| | | <target name="compile" |
| | | depends="init,checkjavaversion,generatesources,resolve" |
| | | description="Compile the Directory Server source files."> |