Someone has the idea of how to compile an eclipse project, with only the command line, I have usually done it with Ant / maven or gradle, but now they have requested me at a lower level with direct commands to use it directly on server.
Something like this:
javac -cp ./somelibs .d ./somedirectory
Currently my .classpath in Eclipse that this:
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.launching.macosx.MacOSXType/Java SE 6 [1.6.0_65-b14-468]"/>
<classpathentry kind="lib" path="lib/com.ibm.gwa.mq.jar"/>
<classpathentry kind="lib" path="lib/com.ibm.mq.jar"/>
<classpathentry kind="lib" path="lib/connector.jar"/>
<classpathentry kind="lib" path="lib/db2jcc.jar"/>
<classpathentry kind="lib" path="lib/db2jcc4.jar"/>
<classpathentry kind="lib" path="lib/joda-time-2.3.jar"/>
<classpathentry kind="lib" path="lib/sqlj.zip"/>
<classpathentry kind="lib" path="lib/sqlj4.zip"/>
<classpathentry kind="output" path="bin"/>
</classpath>
I've been looking for some tool to extract this to a command line but it does not work for me. They will have some suggestion