~ubuntu-branches/ubuntu/precise/commons-csv/precise

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Jan-Pascal van Best
  • Date: 2008-09-10 20:58:00 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20080910205800-ohoq6075nafu8n2b
Tags: upstream-0.1-SNAPSHOT+svn678580
ImportĀ upstreamĀ versionĀ 0.1-SNAPSHOT+svn678580

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  <modelVersion>4.0.0</modelVersion>
4
4
  <parent>
5
5
    <groupId>org.apache.commons</groupId>
6
 
    <artifactId>commons-sandbox</artifactId>
7
 
    <version>1-SNAPSHOT</version>
 
6
    <artifactId>commons-sandbox-parent</artifactId>
 
7
    <version>7</version>
8
8
  </parent>
9
9
 
10
10
  <artifactId>commons-csv</artifactId>
11
11
  <version>1.0-SNAPSHOT</version>
12
 
  <name>Commons CSV</name>
13
 
  <url>http://jakarta.apache.org/commons/sandbox/csv/</url>
 
12
  <name>Commons CSV (Sandbox)</name>
 
13
  <url>http://commons.apache.org/sandbox/csv/</url>
14
14
  
15
15
  <dependencies>
16
16
    <dependency>
25
25
    <developer>
26
26
      <id>bayard</id>
27
27
      <name>Henri Yandell</name>
28
 
      <email>bayard AT apache DOT org</email>
29
 
      <organization>Apache</organization>
30
 
      <timezone>-5</timezone>
 
28
      <email>bayard@apache.org</email>
 
29
      <organization>Apache</organization>
 
30
    </developer>
 
31
    <developer>
 
32
      <name>Martin van den Bemt</name>
 
33
      <id>mvdb</id>
 
34
      <email>mvdb@apache.org</email>
 
35
      <organization>Apache</organization>
 
36
    </developer>
 
37
    <developer>
 
38
      <name>Yonik Seeley</name>
 
39
      <id>yonik</id>
 
40
      <email>yonik@apache.org</email>
 
41
      <organization>Apache</organization>
31
42
    </developer>
32
43
  </developers>
33
44
  <contributors>
34
45
  </contributors>
35
46
 
36
47
  <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>
 
48
    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/csv/trunk</connection>
 
49
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/csv/trunk</developerConnection>
 
50
    <url>http://svn.apache.org/repos/asf/commons/sandbox/csv/trunk</url>
40
51
  </scm>
41
52
 
42
53
  <distributionManagement>
43
54
    <site>
44
 
      <id>website</id>
 
55
      <id>apache.website</id>
45
56
      <name>Apache Website</name>
46
 
      <url>scp://people.apache.org/www/jakarta.apache.org/commons/sandbox/csv/</url>
 
57
      <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/sandbox/csv/</url>
47
58
    </site>
48
59
  </distributionManagement>
49
60
 
 
61
  <properties>
 
62
    <commons.componentid>csv</commons.componentid>
 
63
    <commons.jira.componentid>12311182</commons.jira.componentid>
 
64
  </properties> 
 
65
 
50
66
  <build>
51
67
      <sourceDirectory>src/java</sourceDirectory>
52
68
      <testSourceDirectory>src/test</testSourceDirectory> 
57
73
      <plugin>
58
74
        <groupId>org.apache.maven.plugins</groupId>
59
75
        <artifactId>maven-changes-plugin</artifactId>
 
76
        <version>2.0</version>
60
77
        <configuration>
61
78
          <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
62
79
        </configuration>
71
88
      <plugin>
72
89
        <groupId>org.apache.maven.plugins</groupId>
73
90
        <artifactId>maven-checkstyle-plugin</artifactId>
 
91
        <version>2.1</version>
74
92
        <configuration>
75
 
          <configLocation>checkstyle.xml</configLocation>
 
93
          <configLocation>${basedir}/checkstyle.xml</configLocation>
 
94
          <enableRulesSummary>false</enableRulesSummary>
76
95
        </configuration>
77
96
      </plugin>
78
97
    </plugins>