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/04/04 17:09:19 UTC

[plc4x] branch develop updated: - Added a line-separator setting in order to make PLC4X releases more reproducible.

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

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new c881fd9  - Added a line-separator setting in order to make PLC4X releases more reproducible.
c881fd9 is described below

commit c881fd92092b833a5a052e295aa0156a13e2c525
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sat Apr 4 19:08:42 2020 +0200

    - Added a line-separator setting in order to make PLC4X releases more reproducible.
---
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index 419f8ee..bd94126 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1359,6 +1359,15 @@
           <artifactId>cmake-maven-plugin</artifactId>
           <version>3.16.3-b2</version>
         </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-release-plugin</artifactId>
+          <configuration>
+            <!-- Set the line separator to the unix style separator (Needed for reproducible builds -->
+            <arguments>-Papache-release -Dline.separator='\n' ${arguments}</arguments>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>