dlr         2004/06/16 18:16:42

  Modified:    .        README.txt
  Added:       .        .project .classpath
  Log:
  Basic facilities for building XML-RPC using Eclipse.  I consider this
  unsupported, but am not about to deny harmless contributions like this
  from the user base.
  
  * README.txt
    Added instructions on building XML-RPC with Eclipse.
  
  * .project
    Eclipse build file.
  
  * .classpath
    Eclipse classpath information file.
  
  Submitted by: Jochen Wiedmann
  
  Revision  Changes    Path
  1.5       +12 -1     ws-xmlrpc/README.txt
  
  Index: README.txt
  ===================================================================
  RCS file: /home/cvs/ws-xmlrpc/README.txt,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -u -r1.4 -r1.5
  --- README.txt        22 Feb 2002 13:36:15 -0000      1.4
  +++ README.txt        17 Jun 2004 01:16:42 -0000      1.5
  @@ -14,6 +14,7 @@
   xdocs/      XmlRpc documention in DocBook format.
   docs/       The rendered documentation in HTML format.
   
  +
   --------------------------------------------------------------------------
   R E Q U I R E M E N T S
   --------------------------------------------------------------------------
  @@ -22,6 +23,7 @@
   (http://jakarta.apache.org/ant/).  Execute "ant -help" from this directory
   to get basic help or just "ant" to build the jars.
   
  +
   --------------------------------------------------------------------------
   B U I L D I N G
   --------------------------------------------------------------------------
  @@ -39,6 +41,16 @@
   
   These properties define full paths to JARs files.
   
  +If you are using the Eclipse IDE, Apache's XML-RPC package comes ready
  +with basic .classpath and .project files. Simply create a
  +sub-directory named "lib" and add the following files:
  +
  +    commons-codec-1.2.jar
  +    commons-httpclient-2.0.jar
  +    junit.jar
  +    servlet.jar
  +
  +
   --------------------------------------------------------------------------
   R U N N I N G
   --------------------------------------------------------------------------
  @@ -46,4 +58,3 @@
   The default SAX parser that is used is the MinML parser which is
   included in the download. If you want to use an alternative parser
   you have to make sure it is included in your CLASSPATH.
  -
  
  
  
  1.1                  ws-xmlrpc/.project
  
  Index: .project
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <projectDescription>
        <name>ws-xmlrpc</name>
        <comment></comment>
        <projects>
        </projects>
        <buildSpec>
                <buildCommand>
                        <name>org.eclipse.jdt.core.javabuilder</name>
                        <arguments>
                        </arguments>
                </buildCommand>
        </buildSpec>
        <natures>
                <nature>org.eclipse.jdt.core.javanature</nature>
        </natures>
  </projectDescription>
  
  
  
  1.1                  ws-xmlrpc/.classpath
  
  Index: .classpath
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <classpath>
        <classpathentry kind="src" path="examples/echo"/>
        <classpathentry kind="src" path="src/java"/>
        <classpathentry kind="src" path="src/test"/>
        <classpathentry kind="lib" path="lib/commons-codec-1.2.jar"/>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
        <classpathentry kind="lib" path="lib/commons-httpclient-2.0.jar"/>
        <classpathentry kind="lib" path="lib/servlet.jar"/>
        <classpathentry kind="lib" path="lib/junit.jar"/>
        <classpathentry kind="output" path="bin"/>
  </classpath>
  
  
  

Reply via email to