11<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" >
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
44 <parent >
55 <groupId >org.apache.commons</groupId >
1515The Commons CSV library provides a simple interface for reading and writing
1616CSV files of various types.
1717 </description >
18-
18+
1919 <dependencies >
2020 <dependency >
2121 <groupId >junit</groupId >
@@ -44,6 +44,13 @@ CSV files of various types.
4444 <email >yonik@apache.org</email >
4545 <organization >Apache</organization >
4646 </developer >
47+ <developer >
48+ <name >Gary Gregory</name >
49+ <id >ggregory</id >
50+ <email >ggregory@apache.org</email >
51+ <url >http://www.garygregory.com</url >
52+ <timezone >-5</timezone >
53+ </developer >
4754 </developers >
4855 <contributors >
4956 </contributors >
@@ -63,24 +70,63 @@ CSV files of various types.
6370 </distributionManagement >
6471
6572 <properties >
73+ <commons .release.version>1.0</commons .release.version>
74+ <!-- The RC version used in the staging repository URL. -->
75+ <commons .rc.version>RC1</commons .rc.version>
6676 <commons .componentid>csv</commons .componentid>
6777 <commons .jira.id>CSV</commons .jira.id>
6878 <commons .jira.pid>12313222</commons .jira.pid>
6979 <maven .compile.source>1.5</maven .compile.source>
7080 <maven .compile.target>1.5</maven .compile.target>
71- </properties >
81+ <!-- Ensure copies work OK (can be removed later when this is in parent POM) -->
82+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
83+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
84+ <commons .encoding>UTF-8</commons .encoding>
85+ <checkstyle .header.file>${basedir} /LICENSE-header.txt</checkstyle .header.file>
86+ </properties >
7287
7388 <reporting >
7489 <plugins >
7590 <plugin >
7691 <groupId >org.apache.maven.plugins</groupId >
7792 <artifactId >maven-checkstyle-plugin</artifactId >
78- <version >2.1</version >
93+ <version >2.9. 1</version >
7994 <configuration >
8095 <configLocation >${basedir} /checkstyle.xml</configLocation >
8196 <enableRulesSummary >false</enableRulesSummary >
97+ <headerFile >${basedir} /LICENSE-header.txt</headerFile >
98+ </configuration >
99+ </plugin >
100+ <plugin >
101+ <groupId >org.apache.maven.plugins</groupId >
102+ <artifactId >maven-pmd-plugin</artifactId >
103+ <version >2.7.1</version >
104+ <configuration >
105+ <targetJdk >${maven.compile.target} </targetJdk >
82106 </configuration >
83107 </plugin >
108+ <plugin >
109+ <groupId >org.codehaus.mojo</groupId >
110+ <artifactId >findbugs-maven-plugin</artifactId >
111+ <version >2.5.2</version >
112+ </plugin >
113+ <plugin >
114+ <groupId >org.codehaus.mojo</groupId >
115+ <artifactId >taglist-maven-plugin</artifactId >
116+ <version >2.4</version >
117+ <configuration >
118+ <tags >
119+ <tag >TODO</tag >
120+ <tag >NOPMD</tag >
121+ <tag >NOTE</tag >
122+ </tags >
123+ </configuration >
124+ </plugin >
125+ <plugin >
126+ <groupId >org.codehaus.mojo</groupId >
127+ <artifactId >javancss-maven-plugin</artifactId >
128+ <version >2.0</version >
129+ </plugin >
84130 </plugins >
85131 </reporting >
86132
0 commit comments