2024-12-15 14:46:58 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2020-09-21 01:58:32 +02:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.addons.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
|
2024-12-15 14:46:58 +01:00
|
|
|
<version>4.4.0-SNAPSHOT</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.transform.jsonpath</artifactId>
|
|
|
|
|
|
|
|
<name>openHAB Add-ons :: Bundles :: Transformation Service :: JSonPath</name>
|
|
|
|
|
|
|
|
<properties>
|
2024-02-04 14:55:01 +01:00
|
|
|
<bnd.importpackage>!org.apache.tapestry5.json.*,!org.codehaus.jettison.json.*,!org.json.*,!com.fasterxml.jackson.*,!jakarta.json.*</bnd.importpackage>
|
2020-09-21 01:58:32 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
2024-02-04 14:55:01 +01:00
|
|
|
<version>2.9.0</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
<scope>compile</scope>
|
2024-02-04 14:55:01 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<!-- Exclude slf4j-api to prevent its scope being changed from 'provided' to 'runtime' -->
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2020-09-21 01:58:32 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
2024-02-04 14:55:01 +01:00
|
|
|
<version>9.3</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.minidev</groupId>
|
|
|
|
<artifactId>accessors-smart</artifactId>
|
2024-02-04 14:55:01 +01:00
|
|
|
<version>2.5.0</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.minidev</groupId>
|
|
|
|
<artifactId>json-smart</artifactId>
|
2024-02-04 14:55:01 +01:00
|
|
|
<version>2.5.0</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|