~ubuntu-branches/ubuntu/quantal/commons-csv/quantal

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Jan-Pascal van Best
  • Date: 2007-07-27 09:45:30 UTC
  • Revision ID: james.westby@ubuntu.com-20070727094530-iy6ls22i7yj3p0sg
Tags: upstream-0.1-SNAPSHOT+svn558885
ImportĀ upstreamĀ versionĀ 0.1-SNAPSHOT+svn558885

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
        <configuration>
 
61
          <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
 
62
        </configuration>
 
63
        <reportSets>
 
64
          <reportSet>
 
65
            <reports>
 
66
              <report>changes-report</report>
 
67
            </reports>
 
68
          </reportSet>
 
69
        </reportSets>
 
70
      </plugin>
 
71
      <plugin>
 
72
        <groupId>org.apache.maven.plugins</groupId>
 
73
        <artifactId>maven-checkstyle-plugin</artifactId>
 
74
        <configuration>
 
75
          <configLocation>checkstyle.xml</configLocation>
 
76
        </configuration>
 
77
      </plugin>
 
78
    </plugins>
 
79
  </reporting>
 
80
 
 
81
</project>