<?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.bundles</groupId> <artifactId>org.openhab.addons.reactor.bundles</artifactId> <version>4.3.0-SNAPSHOT</version> </parent> <artifactId>org.openhab.voice.pipertts</artifactId> <name>openHAB Add-ons :: Bundles :: PiperTTS Binding</name> <dependencies> <dependency> <groupId>io.github.givimad</groupId> <artifactId>piper-jni</artifactId> <version>1.2.0-a0f09cd</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <exclude>**/win-*/**</exclude> <exclude>**/debian-*/**</exclude> <exclude>**/macos-*/**</exclude> <exclude>**/espeak-ng-data.zip</exclude> <exclude>**/libtashkeel_model.ort</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>