amy-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-core</artifactId>
<version>0.8.0</version>
</dependency><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>
<artifactId>amy-core</artifactId>
<packaging>jar</packaging>
<name>Amy Core</name>
<description>The Amy core framework</description>
<parent>
<groupId>io.github.amyassist</groupId>
<artifactId>amy</artifactId>
<version>0.8.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<sphinx.version>5prealpha</sphinx.version>
</properties>
<repositories>
<!-- used for MARY repository -->
<repository>
<id>mary-repo</id>
<name>Mary Repositroy</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-di</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-natlang-api</artifactId>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-message-hub-api</artifactId>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-api</artifactId>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-plugin-manager-api</artifactId>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>deployment-descriptor-utility</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-testing-framework</artifactId>
<version>0.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<!-- CMU Sphinx for SR -->
<dependency>
<groupId>net.sf.phat</groupId>
<artifactId>sphinx4-core</artifactId>
<version>${sphinx.version}</version>
</dependency>
<dependency>
<groupId>net.sf.phat</groupId>
<artifactId>sphinx4-data</artifactId>
<version>${sphinx.version}</version>
</dependency>
<!-- Cliche for Console -->
<dependency>
<groupId>com.googlecode.clichemaven</groupId>
<artifactId>cliche</artifactId>
<version>${cliche.version}</version>
</dependency>
<!-- Marry TTS -->
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>voice-cmu-slt-hsmm</artifactId>
<version>5.2</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>voice-dfki-poppy-hsmm</artifactId>
<version>5.2</version>
</dependency>
<!-- Tests -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-remote-sr</artifactId>
<version>0.8.0</version>
</dependency>
</dependencies>
</project>