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 2019/05/21 15:15:14 UTC

[plc4x] branch develop updated: Moved the definition of the scxml2 dependency into the sandbox.

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 bdb447b  Moved the definition of the scxml2 dependency into the sandbox.
bdb447b is described below

commit bdb447ba3d86606e85ce97240d13ce3b9e9a5468
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Tue May 21 17:15:07 2019 +0200

    Moved the definition of the scxml2 dependency into the sandbox.
---
 pom.xml         | 12 ------------
 sandbox/pom.xml | 16 ++++++++++++++++
 2 files changed, 16 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7bb6953..5521ce2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -117,7 +117,6 @@
     <commons-lang3.version>3.7</commons-lang3.version>
     <commons-math3.version>3.5</commons-math3.version>
     <commons-pool2.version>2.6.0</commons-pool2.version>
-    <commons-scxml.version>2.0-SNAPSHOT</commons-scxml.version>
     <commons-text.version>1.4</commons-text.version>
     <crc.version>1.0.1</crc.version>
     <daffodil.version>2.3.0</daffodil.version>
@@ -378,17 +377,6 @@
       </dependency>
       <dependency>
         <groupId>org.apache.commons</groupId>
-        <artifactId>commons-scxml2</artifactId>
-        <version>${commons-scxml.version}</version>
-        <exclusions>
-          <exclusion>
-            <groupId>commons-logging</groupId>
-            <artifactId>commons-logging</artifactId>
-          </exclusion>
-        </exclusions>
-      </dependency>
-      <dependency>
-        <groupId>org.apache.commons</groupId>
         <artifactId>commons-text</artifactId>
         <version>${commons-text.version}</version>
       </dependency>
diff --git a/sandbox/pom.xml b/sandbox/pom.xml
index eb644eb..b72c65b 100644
--- a/sandbox/pom.xml
+++ b/sandbox/pom.xml
@@ -39,4 +39,20 @@
     <module>dynamic-driver-s7</module>
   </modules>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-scxml2</artifactId>
+        <version>2.0-SNAPSHOT</version>
+        <exclusions>
+          <exclusion>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
 </project>
\ No newline at end of file