You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/07/30 23:24:35 UTC

svn commit: r1367315 - in /commons/proper/pool/branches/POOL_1_X: pom.xml src/changes/changes.xml

Author: ggregory
Date: Mon Jul 30 21:24:34 2012
New Revision: 1367315

URL: http://svn.apache.org/viewvc?rev=1367315&view=rev
Log:
[POOL-223] Checkstyle reports "Missing a header - not enough lines in file." on most sources

Modified:
    commons/proper/pool/branches/POOL_1_X/pom.xml
    commons/proper/pool/branches/POOL_1_X/src/changes/changes.xml

Modified: commons/proper/pool/branches/POOL_1_X/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/pom.xml?rev=1367315&r1=1367314&r2=1367315&view=diff
==============================================================================
--- commons/proper/pool/branches/POOL_1_X/pom.xml (original)
+++ commons/proper/pool/branches/POOL_1_X/pom.xml Mon Jul 30 21:24:34 2012
@@ -108,6 +108,10 @@
       <name>Todd Carmichael</name>
       <email>toddc@concur.com</email>
     </contributor>
+    <contributor>
+      <name>Liviu Tudor</name>
+      <email>me AT liviutudor DOT com</email>
+    </contributor>
   </contributors>
 
   <dependencies>
@@ -134,6 +138,7 @@
     <maven.compile.target>1.5</maven.compile.target>
     <commons.jira.id>POOL</commons.jira.id>
     <commons.jira.pid>12310488</commons.jira.pid>
+    <checkstyle.header.file>license-header.txt</checkstyle.header.file>
   </properties>
 
   <distributionManagement>

Modified: commons/proper/pool/branches/POOL_1_X/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/changes/changes.xml?rev=1367315&r1=1367314&r2=1367315&view=diff
==============================================================================
--- commons/proper/pool/branches/POOL_1_X/src/changes/changes.xml (original)
+++ commons/proper/pool/branches/POOL_1_X/src/changes/changes.xml Mon Jul 30 21:24:34 2012
@@ -25,6 +25,9 @@
     <action dev="ggregory" type="fix" issue="POOL-224" due-to="liviutudor">
       FindBugs performance warnings on StackKeyedObjectPool.
     </action>
+    <action dev="ggregory" type="fix" issue="POOL-223" due-to="liviutudor">
+      Checkstyle reports "Missing a header - not enough lines in file." on most sources.
+    </action>
     <action dev="markt" type="fix" issue="POOL-161" due-to="Sylvain Laurent">
       Ensure the evictor thread runs with the same class loader that was in use
       when the pool was created to ensure that the factory class is visible.