|
| 1 | +<?xml version="1.0"?> |
| 2 | +<project> |
| 3 | + |
| 4 | + <version>3</version> |
| 5 | + <name>commons-io</name> |
| 6 | + <id>commons-io</id> |
| 7 | + <currentVersion>SNAPSHOT</currentVersion> |
| 8 | + |
| 9 | + <organization> |
| 10 | + <name>Apache Software Foundation</name> |
| 11 | + <url>http://www.apache.org</url> |
| 12 | + <logo>/images/jakarta-logo-blue.gif</logo> |
| 13 | + </organization> |
| 14 | + <logo>/images/logo.jpg</logo> |
| 15 | + |
| 16 | + <inceptionYear>2002</inceptionYear> |
| 17 | + <package>org.apache.commons.io</package> |
| 18 | + |
| 19 | + <shortDescription>Java Common IO Components</shortDescription> |
| 20 | + |
| 21 | + <!-- Gump integration --> |
| 22 | + <gumpRepositoryId>jakarta-io</gumpRepositoryId> |
| 23 | + |
| 24 | + <description> |
| 25 | + Commons.IO is a package of Java utility classes for ther classes that are in java.io's hierarchy, or are considered to be so standard and of such high reuse as to justify existence in java.io. |
| 26 | + </description> |
| 27 | + |
| 28 | + <url>http://jakarta.apache.org/commons/io/</url> |
| 29 | + <cvsWebUrl>http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/io/</cvsWebUrl> |
| 30 | + <issueTrackingUrl>http://nagoya.apache.org:8080/scarab/servlet/scarab/</issueTrackingUrl> |
| 31 | + <siteAddress>jakarta.apache.org</siteAddress> |
| 32 | + <siteDirectory>/www/jakarta.apache.org/commons/sandbox/io/</siteDirectory> |
| 33 | + <distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons-sandbox/io/</distributionDirectory> |
| 34 | + |
| 35 | + <mailingLists> |
| 36 | + <mailingList> |
| 37 | + <name>Commons User List</name> |
| 38 | + <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe> |
| 39 | + <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe> |
| 40 | + <archive>http://nagoya.apache.org:8080/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive> |
| 41 | + </mailingList> |
| 42 | + <mailingList> |
| 43 | + <name>Commons Developer List</name> |
| 44 | + <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe> |
| 45 | + <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe> |
| 46 | + <archive>http://nagoya.apache.org:8080/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive> |
| 47 | + </mailingList> |
| 48 | + </mailingLists> |
| 49 | + |
| 50 | + <developers> |
| 51 | + <developer> |
| 52 | + <name>Scott Sanders</name> |
| 53 | + <id>sanders</id> |
| 54 | + <email>sanders@apache.org</email> |
| 55 | + <organization></organization> |
| 56 | + <roles> |
| 57 | + <role>Java Developer</role> |
| 58 | + </roles> |
| 59 | + </developer> |
| 60 | + <developer> |
| 61 | + <name>dIon Gillard</name> |
| 62 | + <id>dion</id> |
| 63 | + <email>dion@apache.org</email> |
| 64 | + <organization></organization> |
| 65 | + <roles> |
| 66 | + <role>Java Developer</role> |
| 67 | + </roles> |
| 68 | + </developer> |
| 69 | + <developer> |
| 70 | + <name>Nicola Ken Barozzi</name> |
| 71 | + <id>nicolaken</id> |
| 72 | + <email>nicolaken@apache.org</email> |
| 73 | + <organization></organization> |
| 74 | + <roles> |
| 75 | + <role>Java Developer</role> |
| 76 | + </roles> |
| 77 | + </developer> |
| 78 | + <developer> |
| 79 | + <name>Henri Yandell</name> |
| 80 | + <id>bayard</id> |
| 81 | + <email>bayard@apache.org</email> |
| 82 | + <organization></organization> |
| 83 | + <roles> |
| 84 | + <role>Java Developer</role> |
| 85 | + </roles> |
| 86 | + </developer> |
| 87 | + </developers> |
| 88 | + |
| 89 | + |
| 90 | + <!-- Need to mark these as compile-time/run-time --> |
| 91 | + |
| 92 | + <dependencies> |
| 93 | + |
| 94 | + <dependency> |
| 95 | + <id>junit</id> |
| 96 | + <version>3.7</version> |
| 97 | + </dependency> |
| 98 | + |
| 99 | + </dependencies> |
| 100 | + |
| 101 | + |
| 102 | + |
| 103 | + <build> |
| 104 | + |
| 105 | + <nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress> |
| 106 | + <sourceDirectory>src/java</sourceDirectory> |
| 107 | + <unitTestSourceDirectory>src/test</unitTestSourceDirectory> |
| 108 | + <integrationUnitTestSourceDirectory/> |
| 109 | + <aspectSourceDirectory/> |
| 110 | + |
| 111 | + <!-- Unit test classes --> |
| 112 | + <unitTest> |
| 113 | + <includes> |
| 114 | + <include>**/Test*.java</include> |
| 115 | + </includes> |
| 116 | + </unitTest> |
| 117 | + |
| 118 | + |
| 119 | + <!-- Integration unit test classes --> |
| 120 | + <integrationUnitTestPatterns></integrationUnitTestPatterns> |
| 121 | + |
| 122 | + <!-- J A R R E S O U R C E S --> |
| 123 | + <!-- Resources that are packaged up inside the JAR file --> |
| 124 | + <resources> |
| 125 | + <includes> |
| 126 | + <include>**/*.properties</include> |
| 127 | + </includes> |
| 128 | + </resources> |
| 129 | + </build> |
| 130 | +</project> |
| 131 | + |
0 commit comments