You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by bw...@apache.org on 2003/05/24 02:06:56 UTC

cvs commit: maven-new/fetch project.xml

bwalding    2003/05/23 17:06:56

  Added:       fetch    project.xml
  Log:
  New component
  
  Revision  Changes    Path
  1.1                  maven-new/fetch/project.xml
  
  Index: project.xml
  ===================================================================
  <?xml version="1.0"?>
  <project>
    <pomVersion>3</pomVersion>
    <name>Dep</name>
    <id>dep</id>
    <currentVersion>1.0-dev</currentVersion>
    <organization>
      <name>Walding Consulting Services</name>
      <url>http://www.walding.com/</url>
    </organization>
    <inceptionYear>2003</inceptionYear>
    <package>org.apache.maven.dep</package>
  
    <shortDescription>Lightweight downloader</shortDescription>
  
    <description>
      Dep is an ultra-lightweight dependency downloader
    </description>
  
    <url>http://projects.walding.com/dictator/</url>
    <siteAddress>atlas.walding.com</siteAddress>
    <siteDirectory>
      /var/www/projects.walding.com/html/dep
    </siteDirectory>
    <distributionDirectory>
    </distributionDirectory>
  
    <repository>
      <connection>
        scm:cvs:pserver:waldingb@projects.walding.com:/home/cvsroot:dictator
      </connection>
      <url>
        http://cvs.walding.com/viewcvs/dictator/
      </url>
    </repository>
    
    <developers>
      <developer>
        <name>Ben Walding</name>
        <id>bwalding</id>
        <email>bwalding@apache.org</email>
        <organization></organization>
      </developer>
    </developers>
  
    <dependencies>
      <dependency>
        <id>log4j</id>
        <version>1.2.7</version>
      </dependency>
      
      <dependency>
          <id>commons-httpclient</id>
          <version>2.0alpha1</version>
      </dependency>
  
      <dependency>
          <id>jetty</id>
          <version>4.2.9</version>
          <!-- test only -->
      </dependency>
  
      <dependency>
          <id>servletapi</id>
          <version>2.3</version>
          <!-- test only -->
      </dependency>
  
    </dependencies>
  
    <build>
      <sourceDirectory>src/main/java</sourceDirectory>
  
      <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
      <integrationUnitTestSourceDirectory/>
  
      <aspectSourceDirectory/>
  
      <!-- Unit test cases -->
      <unitTest>
        <includes>
          <include>**/*Test.java</include>
        </includes>
        <excludes>
          <exclude>**/*.java</exclude>
        </excludes>
      </unitTest>
                
      <!-- J A R  R E S O U R C E S -->
      <!-- Resources that are packaged up inside the JAR file -->
      <resources>
      	<resource>    	
  				<directory>src/java</directory>
  				<includes><include>**/*</include></includes>
  				<excludes><exclude>**/*.java</exclude></excludes>
  		</resource>
  		<resource>    	
  				<directory>src/resources</directory>
  				<includes><include>velocity/**/*</include></includes>
  		</resource>
  	</resources>
  	
  	 
      
    </build>
  </project>
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org