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/02/11 14:04:53 UTC

[plc4x] branch rel/0.6 updated: - Added a "provided" dependency to the boost lib to make maven build this first.

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

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


The following commit(s) were added to refs/heads/rel/0.6 by this push:
     new 57b8d5d  - Added a "provided" dependency to the boost lib to make maven build this first.
57b8d5d is described below

commit 57b8d5deb52475470459ccfd47f56247c02576ec
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Tue Feb 11 15:04:47 2020 +0100

    - Added a "provided" dependency to the boost lib to make maven build this first.
---
 tools/thrift/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/tools/thrift/pom.xml b/tools/thrift/pom.xml
index d3b26ca..b4599fa 100644
--- a/tools/thrift/pom.xml
+++ b/tools/thrift/pom.xml
@@ -336,4 +336,16 @@
     </plugins>
   </build>
 
+  <!-- Make sure boost lib is built first -->
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.plc4x</groupId>
+      <artifactId>plc4x-tools-boost</artifactId>
+      <version>${project.version}</version>
+      <type>zip</type>
+      <classifier>lib-${os.classifier}</classifier>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+
 </project>
\ No newline at end of file