You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2020/09/08 11:22:33 UTC

[plc4x-build-tools] branch releases/code-generation/1.3 updated: - Removed the line.separator argument as it was causing errors.

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

cdutz pushed a commit to branch releases/code-generation/1.3
in repository https://gitbox.apache.org/repos/asf/plc4x-build-tools.git


The following commit(s) were added to refs/heads/releases/code-generation/1.3 by this push:
     new b527191  - Removed the line.separator argument as it was causing errors.
b527191 is described below

commit b52719104d98e552a7e350e33eef8ba81c31ea89
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Tue Sep 8 13:22:26 2020 +0200

    - Removed the line.separator argument as it was causing errors.
---
 code-generation/pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/code-generation/pom.xml b/code-generation/pom.xml
index bb080db..d3aef0b 100644
--- a/code-generation/pom.xml
+++ b/code-generation/pom.xml
@@ -185,7 +185,9 @@
             <!-- Tell the plugin to always release all modules using the same version -->
             <autoVersionSubmodules>true</autoVersionSubmodules>
             <!-- Set the line separator to the unix style separator (Needed for reproducible builds -->
-            <arguments>-Papache-release -Dline.separator='\n' ${arguments}</arguments>
+            <!--arguments>-Papache-release -Dline.separator='\n' ${arguments}</arguments-->
+            <!-- line.separator commented out as it was causing trouble -->
+            <arguments>-Papache-release ${arguments}</arguments>
           </configuration>
         </plugin>
       </plugins>