mpoeschl    02/04/25 01:38:22

  Added:       .        build-maven.xml LICENSE.txt project.xml
  Log:
  add files needed to use maven
  
  Revision  Changes    Path
  1.1                  xml-rpc/build-maven.xml
  
  Index: build-maven.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <project name="maven" default="maven:jar" basedir=".">
  
    <!-- Give user a chance to override without editing this file
         (and without typing -D each time they invoke a target) -->
  
    <!-- Allow any user specific values to override the defaults -->
    <property file="${user.home}/build.properties" />
    <!-- Allow user defaults for this project -->
    <property file="build.properties" />
    <!-- Set default values for the build -->
    <property file="project.properties" />
  
    <!-- maven:start -->
    
    <!-- ================================================================== -->
    <!-- D E L E G A T O R S                                                -->
    <!-- ================================================================== -->
          
    <target 
      name="maven:site">
      <ant antfile="${maven.home}/build-docs.xml" target="site"/>
    </target>
          
    <target 
      name="maven:jar">
      <ant antfile="${maven.home}/build-maven.xml" target="jar"/>
    </target>
          
    <target 
      name="maven:install-jar">
      <ant antfile="${maven.home}/build-maven.xml" target="install-jar"/>
    </target>
          
    <target 
      name="maven:env">
      <ant antfile="${maven.home}/build-maven.xml" target="env"/>
    </target>
          
    <target 
      name="maven:docs">
      <ant antfile="${maven.home}/build-docs.xml" target="docs"/>
    </target>
          
    <target 
      name="maven:test">
      <ant antfile="${maven.home}/build-test.xml" target="test"/>
    </target>
          
    <target 
      name="maven:clean">
      <ant antfile="${maven.home}/build-maven.xml" target="clean"/>
    </target>
          
    <target  
      name="maven:metrics">
      <ant antfile="${maven.home}/build-metrics.xml" target="metrics"/>
    </target>
          
    <target 
      name="maven:dist">
      <ant antfile="${maven.home}/build-maven.xml" target="dist"/>
    </target>
          
    <target 
      name="maven:deploy-site">
      <ant antfile="${maven.home}/build-docs.xml" target="deploy-site"/>
    </target>
          
    <target 
      name="maven:gump-descriptor">
      <ant antfile="${maven.home}/build-maven.xml" target="gump-descriptor"/>
    </target>
          
    <target 
      name="maven:javadocs">
      <ant antfile="${maven.home}/build-docs.xml" target="javadocs"/>
    </target>
          
    <target 
      name="maven:compile">
      <ant antfile="${maven.home}/build-maven.xml" target="compile"/>
    </target>
  
    <target 
      name="maven:update-jars">
      <ant antfile="${maven.home}/build-maven.xml" target="update-jars"/>
    </target>
      
    <!-- maven:end -->
  
  </project>
  
  
  
  1.1                  xml-rpc/LICENSE.txt
  
  Index: LICENSE.txt
  ===================================================================
  
  
  /*
   * The Apache Software License, Version 1.1
   *
   *
   * Copyright (c) 2001 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution,
   *    if any, must include the following acknowledgment:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowledgment may appear in the software itself,
   *    if and wherever such third-party acknowledgments normally appear.
   *
   * 4. The names "XML-RPC" and "Apache Software Foundation" must
   *    not be used to endorse or promote products derived from this
   *    software without prior written permission. For written
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache",
   *    nor may "Apache" appear in their name, without prior written
   *    permission of the Apache Software Foundation.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   */
  
  
  
  1.1                  xml-rpc/project.xml
  
  Index: project.xml
  ===================================================================
  <?xml version="1.0"?>
  <project>
  
    <version>2</version>
    <name>xmlrpc</name>
    <id>xmlrpc</id>
    <currentVersion>1.2-dev</currentVersion>
    <organization>
      <name>Apache Software Foundation</name>
      <url>http://xml.apache.org/</url>
    </organization>
    <inceptionYear>2001</inceptionYear>
    <package>org.apache.xmlrpc</package>
  
    <shortDescription>Project Management Tools</shortDescription>
  
    <!-- Gump integration -->
    <gumpRepositoryId>jakarta</gumpRepositoryId>
  
    <description>
      Apache XML-RPC is a Java implementation of <a href="http://www.xmlrpc.com";>
      XML-RPC</a>, a popular protocol that uses XML over HTTP to implement remote
      procedure calls.
      <br/>
      Apache XML-RPC was previously known as Helma XML-RPC. If you have code using
      the Helma library, all you should have to do is change the import statements
      in your code from helma.xmlrpc.* to org.apache.xmlrpc.*.
    </description>
  
    <url>http://xml.apache.org/xmlrpc/</url>
    <cvsWebUrl>http://cvs.apache.org/viewcvs.cgi/xml-rpc/</cvsWebUrl>
    
<issueTrackingUrl>http://nagoya.apache.org/bugzilla/query.cgi?product=XML-RPC</issueTrackingUrl>
    <siteAddress>xml.apache.org</siteAddress>
    <siteDirectory>/www/xml.apache.org/xmlrpc/</siteDirectory>
    <distributionDirectory>/www/xml.apache.org/dist/xmlrpc/</distributionDirectory>
  
    <distributions>
      <distribution>
        <id>1.0</id>
        <version>1.0</version>
        <tag>XMLRPC_1_0</tag>
      </distribution>
      <distribution>
        <id>1.1</id>
        <version>1.1</version>
        <tag>XMLRPC_1_1</tag>
      </distribution>
    </distributions>
  
    <branches>
    </branches>
  
    <mailingLists>
      <mailingList>
        <name>XML-RPC User List</name>
        <subscribe>[EMAIL PROTECTED]</subscribe>
        <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
        <archive></archive>
      </mailingList>
      <mailingList>
        <name>XML-RPC Developer List</name>
        <subscribe>[EMAIL PROTECTED]</subscribe>
        <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
        <archive></archive>
      </mailingList>
    </mailingLists>
  
    <developers>
      <developer>
        <name>Hannes Wallnoefer</name>
        <id>hannes</id>
        <email>[EMAIL PROTECTED]</email>
        <organization></organization>
      </developer>
      <developer>
        <name>Martin Poeschl</name>
        <id>mpoeschl</id>
        <email>[EMAIL PROTECTED]</email>
        <organization>Zenplex</organization>
      </developer>
      <developer>
        <name>Daniel Rall</name>
        <id>dlr</id>
        <email>[EMAIL PROTECTED]</email>
        <organization>CollabNet, Inc.</organization>
      </developer>
      <developer>
        <name>Jason van Zyl</name>
        <id>jvanzyl</id>
        <email>[EMAIL PROTECTED]</email>
        <organization>Zenplex</organization>
      </developer>
    </developers>
  
    <dependencies>
      <dependency>
        <name>jakarta-servletapi</name>
        <type>required</type>
        <version>2.2</version>
        <jar>servlet-2.2.jar</jar>
        <url></url>
      </dependency>
      <dependency>
        <name>jsse</name>
        <type>required</type>
        <version>1.0.2</version>
        <jar>jsse.jar</jar>
        <url>http://java.sun.com/products/jsse/</url>
      </dependency>
      <dependency>
        <name>jnet</name>
        <type>required</type>
        <version>1.0.2</version>
        <jar>jnet.jar</jar>
        <url>http://java.sun.com/products/jsse/</url>
      </dependency>
      <dependency>
        <name>jcert</name>
        <type>required</type>
        <version>1.0.2</version>
        <jar>jcert.jar</jar>
        <url>http://java.sun.com/products/jsse/</url>
      </dependency>
      <dependency>
        <name>fesi</name>
        <type>required</type>
        <version>1.1.5</version>
        <jar>fesi.jar</jar>
        <url>http://home.worldcom.ch/jmlugrin/fesi/</url>
      </dependency>
  
      <!-- Documentation dependencies -->
  
      <dependency>
        <name>jakarta-velocity-dvsl</name>
        <type>documentation</type>
        <version>0.43</version>
        <jar>velocity-dvsl-0.43.jar</jar>
        <url>http://jakarta.apache.org/velocity/dvsl/</url>
      </dependency>
  
      <dependency>
        <name>jdepend</name>
        <type>required</type>
        <version>2.2</version>
        <jar>jdepend.jar</jar>
        <url>http://www.clarkware.com/software/JDepend.html</url>
      </dependency>
  
      <!-- the following are all required for checkstyle to work -->
      <dependency>
        <name>checkstyle</name>
        <type>required</type>
        <version>2.1</version>
        <jar>checkstyle-2.1.jar</jar>
        <url>http://checkstyle.sourceforge.net/</url>
      </dependency>
  
      <dependency>
        <name>antlr</name>
        <type>required</type>
        <version></version>
        <jar>antlr.jar</jar>
        <url>http://www.antlr.org/</url>
      </dependency>
  
      <dependency>
        <name>regexp</name>
        <type>required</type>
        <version>1.2</version>
        <jar>regexp-1.2.jar</jar>
        <url>http://jakarta.apache.org/regexp/</url>
      </dependency>
      <!-- end checkstyle requirements -->
  
    </dependencies>
  
    <build>
  
      <sourceDirectories>
        <sourceDirectory>src/java</sourceDirectory>
      </sourceDirectories>
  
      <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
      <integrationUnitTestSourceDirectory/>
  
      <aspectSourceDirectories>
      </aspectSourceDirectories>
  
      <!-- Unit test classes -->
      <unitTestPatterns>
        <unitTestPattern>include = **/*Test.java</unitTestPattern>
      </unitTestPatterns>
  
      <!-- Integration unit test classes -->
      <integrationUnitTestPatterns>
      </integrationUnitTestPatterns>
  
      <!-- J A R  R E S O U R C E S -->
      <!-- Resources that are packaged up inside the JAR file -->
  
      <jarResources>
      </jarResources>
  
      <jars>
      </jars>
    </build>
  </project>
  
  
  
  


Reply via email to