mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 07:02:02 +01:00
3d547fffeb
Signed-off-by: Miguel Alvarez Diez <miguelwork92@gmail.com>
44 lines
1.3 KiB
XML
44 lines
1.3 KiB
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.bundles</groupId>
|
|
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
|
|
<version>5.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.voice.pipertts</artifactId>
|
|
|
|
<name>openHAB Add-ons :: Bundles :: Voice :: Piper Text-to-Speech</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.github.givimad</groupId>
|
|
<artifactId>piper-jni</artifactId>
|
|
<version>1.2.0-c0670df</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>
|