You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by mh...@apache.org on 2021/03/01 14:20:13 UTC

[incubator-streampipes-extensions] branch dev updated (fc2395c -> 5dc0f66)

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

mheyden pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git.


    from fc2395c  Merge remote-tracking branch 'origin/dev' into dev
     new 71bacb9  Resolve dependency version issues
     new 5dc0f66  Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev

The 2 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                                 | 5 +++++
 streampipes-sinks-databases-jvm/pom.xml | 8 ++++++++
 2 files changed, 13 insertions(+)


[incubator-streampipes-extensions] 02/02: Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev

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

mheyden pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git

commit 5dc0f66b25cacf6a7b8f079d965a12578e968f89
Merge: 71bacb9 fc2395c
Author: heymarco <he...@gmail.com>
AuthorDate: Mon Mar 1 15:18:20 2021 +0100

    Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev

 pom.xml                                            |  14 +-
 .../streampipes/connect/adapters/opcua/OpcUa.java  | 103 +++++++++++--
 .../connect/adapters/opcua/OpcUaAdapter.java       | 161 +++++++--------------
 .../connect/adapters/opcua/utils/OpcUaConnect.java |  30 ++++
 .../opcua/{ => utils}/OpcUaNodeVariants.java       |   2 +-
 .../adapters/opcua/{ => utils}/OpcUaTypes.java     |   2 +-
 .../documentation.md                               |  33 +++++
 .../strings.en                                     |   9 +-
 streampipes-pipeline-elements-all-flink/pom.xml    |   5 +-
 streampipes-processors-aggregation-flink/pom.xml   |   5 +-
 streampipes-processors-enricher-flink/pom.xml      |   5 +-
 streampipes-processors-geo-flink/pom.xml           |   5 +-
 .../pom.xml                                        |   5 +-
 streampipes-processors-statistics-flink/pom.xml    |   5 +-
 streampipes-processors-text-mining-flink/pom.xml   |   5 +-
 .../pom.xml                                        |   5 +-
 streampipes-sinks-databases-flink/pom.xml          |   8 +-
 streampipes-sinks-databases-jvm/pom.xml            |   8 +
 .../sinks/databases/jvm/opcua/OpcUa.java           |  10 +-
 .../strings.en                                     |   4 +-
 20 files changed, 274 insertions(+), 150 deletions(-)

diff --cc pom.xml
index 28977ae,001762b..10a767b
--- a/pom.xml
+++ b/pom.xml
@@@ -668,11 -668,10 +668,15 @@@
                  <version>2.3.3</version>
              </dependency>
              <dependency>
+                 <groupId>org.glassfish.jaxb</groupId>
+                 <artifactId>jaxb-runtime</artifactId>
+                 <version>2.3.3</version>
+             </dependency>
++            <dependency>
 +                <groupId>jakarta.activation</groupId>
 +                <artifactId>jakarta.activation-api</artifactId>
 +                <version>1.2.2</version>
 +            </dependency>
- 
          </dependencies>
      </dependencyManagement>
  


[incubator-streampipes-extensions] 01/02: Resolve dependency version issues

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

mheyden pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git

commit 71bacb95a80ba34c9433975b92708c2e632ffffc
Author: heymarco <he...@gmail.com>
AuthorDate: Mon Mar 1 15:13:48 2021 +0100

    Resolve dependency version issues
---
 pom.xml                                 | 10 ++++++++++
 streampipes-sinks-databases-jvm/pom.xml |  8 ++++++++
 2 files changed, 18 insertions(+)

diff --git a/pom.xml b/pom.xml
index bcbb776..28977ae 100644
--- a/pom.xml
+++ b/pom.xml
@@ -662,6 +662,16 @@
                 <artifactId>jaxb-runtime</artifactId>
                 <version>2.3.3</version>
             </dependency>
+            <dependency>
+                <groupId>jakarta.xml.bind</groupId>
+                <artifactId>jakarta.xml.bind-api</artifactId>
+                <version>2.3.3</version>
+            </dependency>
+            <dependency>
+                <groupId>jakarta.activation</groupId>
+                <artifactId>jakarta.activation-api</artifactId>
+                <version>1.2.2</version>
+            </dependency>
 
         </dependencies>
     </dependencyManagement>
diff --git a/streampipes-sinks-databases-jvm/pom.xml b/streampipes-sinks-databases-jvm/pom.xml
index 177d67c..d3d6bcf 100644
--- a/streampipes-sinks-databases-jvm/pom.xml
+++ b/streampipes-sinks-databases-jvm/pom.xml
@@ -131,6 +131,14 @@
             <groupId>org.bouncycastle</groupId>
             <artifactId>bcpkix-jdk15on</artifactId>
         </dependency>
+        <dependency>
+            <groupId>jakarta.xml.bind</groupId>
+            <artifactId>jakarta.xml.bind-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jakarta.activation</groupId>
+            <artifactId>jakarta.activation-api</artifactId>
+        </dependency>
     </dependencies>
 
     <build>