You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2023/06/17 19:49:32 UTC

[streampipes] branch maven-housekeeping updated: Exclude JSON-LD dependency from pom

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

riemer pushed a commit to branch maven-housekeeping
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/maven-housekeeping by this push:
     new a7d8a40b4 Exclude JSON-LD dependency from pom
a7d8a40b4 is described below

commit a7d8a40b4e1a23c8ecfd733f408c703506bfd2ef
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Sat Jun 17 21:49:05 2023 +0200

    Exclude JSON-LD dependency from pom
---
 streampipes-measurement-units/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/streampipes-measurement-units/pom.xml b/streampipes-measurement-units/pom.xml
index e911c5a57..896bf4cab 100644
--- a/streampipes-measurement-units/pom.xml
+++ b/streampipes-measurement-units/pom.xml
@@ -16,7 +16,8 @@
   ~
   -->
 
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.streampipes</groupId>
@@ -42,6 +43,12 @@
         <dependency>
             <groupId>org.eclipse.rdf4j</groupId>
             <artifactId>rdf4j-rio-rdfxml</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.github.jsonld-java</groupId>
+                    <artifactId>jsonld-java</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.eclipse.rdf4j</groupId>