You can check the sources from the Google SVN repository in Eclipse, which will create the project for you.
Another way is to simply create an empty Java project in Eclipse and upload the source files from jar to the src folder.
To make a jar, you usually need an ant build file, since Eclipse does not make a jar for you. So, something like these lines in the project root folder:
<?xml version="1.0" encoding="UTF-8"?> <project name="GWTLog.makejar" default="makejar" basedir="."> <target name ="makejar" description="Create a jar for the GWTLog project"> <jar jarfile="gwt-log-custom-3.0.4.jar" includes="*.class" basedir="bin"/> </target> </project>
udeleng
source share