mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-25 14:55:55 +01:00
59b3ed33df
Updates Groovy from 4.0.7 to 4.0.9. For release notes, see: https://groovy-lang.org/changelogs/changelog-4.0.8.html https://groovy-lang.org/changelogs/changelog-4.0.9.html Adds dependencies and service loader config so JSON, XML and YAML can be more easily parsed using the JsonSlurper, XmlSlurper and YamlSlurper. Signed-off-by: Wouter Born <github@maindrain.net>
26 lines
870 B
XML
26 lines
870 B
XML
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab.addons.itests</groupId>
|
|
<artifactId>org.openhab.addons.reactor.itests</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.automation.groovyscripting.tests</artifactId>
|
|
|
|
<name>openHAB Add-ons :: Integration Tests :: Groovy Scripting</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.openhab.addons.bundles</groupId>
|
|
<artifactId>org.openhab.automation.groovyscripting</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|