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 2020/01/22 15:28:10 UTC

[commons-csv] branch master updated: [CSV-248] CSVRecord is not Serializable.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new b7fea55  [CSV-248] CSVRecord is not Serializable.
b7fea55 is described below

commit b7fea5546b563f520261e2ab6f981fe87f9ae82c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jan 22 10:28:05 2020 -0500

    [CSV-248] CSVRecord is not Serializable.
    
    Exclude binary test fixtures from Apache RAT consideration.
---
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pom.xml b/pom.xml
index 432b933..466961b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -258,6 +258,7 @@
             <!-- The ferc.gov files are included discussion in https://issues.apache.org/jira/browse/LEGAL-175. -->
             <exclude>src/test/resources/ferc.gov/contract.txt</exclude>
             <exclude>src/test/resources/ferc.gov/transaction.txt</exclude>
+            <exclude>src/test/resources/**/*.bin</exclude>
           </excludes>
         </configuration>
       </plugin>
@@ -376,6 +377,7 @@
             <exclude>src/test/resources/CSVFileParser/testCSV85_ignoreEmpty.txt</exclude>
             <exclude>src/test/resources/ferc.gov/contract.txt</exclude>
             <exclude>src/test/resources/ferc.gov/transaction.txt</exclude>
+            <exclude>src/test/resources/**/*.bin</exclude>
           </excludes>
         </configuration>
       </plugin>