You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2021/12/15 10:01:34 UTC

[commons-csv] branch master updated (c3bba73 -> dbecd03)

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

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


    from c3bba73  Bump checkstyle from 9.1 to 9.2
     new 32d59ce  CSV-292: Add Automatic-Module-Name to JAR file
     new e3b29ca  CSV-292: Changelog
     new dbecd03  Merge branch 'pr-191'

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                 | 18 ++++++++++++++++++
 src/changes/changes.xml |  1 +
 2 files changed, 19 insertions(+)

[commons-csv] 03/03: Merge branch 'pr-191'

Posted by ki...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit dbecd03f8bcfe26b14ec0cb731c76d869452ea14
Merge: c3bba73 e3b29ca
Author: Bruno P. Kinoshita <ki...@users.noreply.github.com>
AuthorDate: Wed Dec 15 23:00:36 2021 +1300

    Merge branch 'pr-191'
    
    This closes #191

 pom.xml                 | 18 ++++++++++++++++++
 src/changes/changes.xml |  1 +
 2 files changed, 19 insertions(+)

[commons-csv] 01/03: CSV-292: Add Automatic-Module-Name to JAR file

Posted by ki...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 32d59ce9b4a0bcb824ba36e6fdd2df2052e8e6ff
Author: Rob Vesse <rv...@dotnetrdf.org>
AuthorDate: Tue Oct 26 08:56:11 2021 +0100

    CSV-292: Add Automatic-Module-Name to JAR file
    
    This allows for using Commons CSV in JPMS based projects that want to
    declare a requirement on the org.apache.commons.csv module
---
 pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/pom.xml b/pom.xml
index 208837b..c59462d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -285,6 +285,24 @@
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <archive combine.children="append">
+            <manifestEntries>
+              <Automatic-Module-Name>${commons.module.name}</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <excludes>

[commons-csv] 02/03: CSV-292: Changelog

Posted by ki...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e3b29ca47cda539e0a3182054d8a04258a87aec3
Author: Bruno P. Kinoshita <ki...@users.noreply.github.com>
AuthorDate: Wed Dec 15 22:57:43 2021 +1300

    CSV-292: Changelog
---
 src/changes/changes.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index de30637..d36c0a0 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -41,6 +41,7 @@
     <release version="1.10.0" date="2021-MM-DD" description="Feature and bug fix release (Java 8)">
       <!-- FIX -->
       <action                 type="fix" dev="ggregory" due-to="Arturo Bernal">Minor changes #172.</action>
+      <action issue="CSV-292" type="fix" dev="kinow" due-to="Rob Vesse">No Automatic-Module-Name prevents usage in JPMS projects without repacking the JAR.</action>
       <!-- ADD -->
       <action issue="CSV-291" type="add" dev="ggregory" due-to="Gary Gregory">Make CSVRecord#values() public.</action>
       <!-- UPDATE -->