|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - <parent> |
5 | | - <groupId>org.apache.commons</groupId> |
6 | | - <artifactId>commons-sandbox</artifactId> |
7 | | - <version>1-SNAPSHOT</version> |
8 | | - </parent> |
9 | | - |
10 | | - <artifactId>commons-csv</artifactId> |
11 | | - <version>1.0-SNAPSHOT</version> |
12 | | - <name>Commons CSV</name> |
13 | | - <url>http://jakarta.apache.org/commons/sandbox/csv/</url> |
14 | | - |
15 | | - <dependencies> |
16 | | - <dependency> |
17 | | - <groupId>junit</groupId> |
18 | | - <artifactId>junit</artifactId> |
19 | | - <version>3.8.1</version> |
20 | | - <scope>test</scope> |
21 | | - </dependency> |
22 | | - </dependencies> |
23 | | - |
24 | | - <developers> |
25 | | - <developer> |
26 | | - <id>bayard</id> |
27 | | - <name>Henri Yandell</name> |
28 | | - <email>bayard AT apache DOT org</email> |
29 | | - <organization>Apache</organization> |
30 | | - <timezone>-5</timezone> |
31 | | - </developer> |
32 | | - </developers> |
33 | | - <contributors> |
34 | | - </contributors> |
35 | | - |
36 | | - <scm> |
37 | | - <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk</connection> |
38 | | - <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk</developerConnection> |
39 | | - <url>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk</url> |
40 | | - </scm> |
41 | | - |
42 | | - <distributionManagement> |
43 | | - <site> |
44 | | - <id>website</id> |
45 | | - <name>Apache Website</name> |
46 | | - <url>scp://people.apache.org/www/jakarta.apache.org/commons/sandbox/csv/</url> |
47 | | - </site> |
48 | | - </distributionManagement> |
49 | | - |
50 | | - <build> |
51 | | - <sourceDirectory>src/java</sourceDirectory> |
52 | | - <testSourceDirectory>src/test</testSourceDirectory> |
53 | | - </build> |
54 | | - |
55 | | -</project> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <parent> |
| 5 | + <groupId>org.apache.commons</groupId> |
| 6 | + <artifactId>commons-sandbox</artifactId> |
| 7 | + <version>1-SNAPSHOT</version> |
| 8 | + </parent> |
| 9 | + |
| 10 | + <artifactId>commons-csv</artifactId> |
| 11 | + <version>1.0-SNAPSHOT</version> |
| 12 | + <name>Commons CSV</name> |
| 13 | + <url>http://jakarta.apache.org/commons/sandbox/csv/</url> |
| 14 | + |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>junit</groupId> |
| 18 | + <artifactId>junit</artifactId> |
| 19 | + <version>3.8.1</version> |
| 20 | + <scope>test</scope> |
| 21 | + </dependency> |
| 22 | + </dependencies> |
| 23 | + |
| 24 | + <developers> |
| 25 | + <developer> |
| 26 | + <id>bayard</id> |
| 27 | + <name>Henri Yandell</name> |
| 28 | + <email>bayard AT apache DOT org</email> |
| 29 | + <organization>Apache</organization> |
| 30 | + <timezone>-5</timezone> |
| 31 | + </developer> |
| 32 | + </developers> |
| 33 | + <contributors> |
| 34 | + </contributors> |
| 35 | + |
| 36 | + <scm> |
| 37 | + <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk</connection> |
| 38 | + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk</developerConnection> |
| 39 | + <url>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk</url> |
| 40 | + </scm> |
| 41 | + |
| 42 | + <distributionManagement> |
| 43 | + <site> |
| 44 | + <id>website</id> |
| 45 | + <name>Apache Website</name> |
| 46 | + <url>scp://people.apache.org/www/jakarta.apache.org/commons/sandbox/csv/</url> |
| 47 | + </site> |
| 48 | + </distributionManagement> |
| 49 | + |
| 50 | + <build> |
| 51 | + <sourceDirectory>src/java</sourceDirectory> |
| 52 | + <testSourceDirectory>src/test</testSourceDirectory> |
| 53 | + </build> |
| 54 | + |
| 55 | + <reporting> |
| 56 | + <plugins> |
| 57 | + <plugin> |
| 58 | + <groupId>org.apache.maven.plugins</groupId> |
| 59 | + <artifactId>maven-changes-plugin</artifactId> |
| 60 | + <reportSets> |
| 61 | + <reportSet> |
| 62 | + <reports> |
| 63 | + <report>changes-report</report> |
| 64 | + </reports> |
| 65 | + </reportSet> |
| 66 | + </reportSets> |
| 67 | + </plugin> |
| 68 | + </plugins> |
| 69 | + </reporting> |
| 70 | + |
| 71 | +</project> |
0 commit comments