amy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy</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>
<packaging>pom</packaging>
<groupId>io.github.amyassist</groupId>
<artifactId>amy</artifactId>
<version>0.8.0</version>
<name>Amy</name>
<description>Personal Assistance System</description>
<url>https://github.com/AmyAssist/Amy</url>
<scm>
<url>https://github.com/AmyAssist/Amy</url>
</scm>
<developers>
<developer>
<name>Benno Krauss</name>
</developer>
<developer>
<name>Christian Bräuner</name>
</developer>
<developer>
<name>Felix Burk</name>
<url>https://github.com/FlxB2</url>
</developer>
<developer>
<name>Florian Bauer</name>
</developer>
<developer>
<name>Kai Menzel</name>
</developer>
<developer>
<name>Lars Buttgereit</name>
</developer>
<developer>
<name>Leon Kiefer</name>
<url>https://github.com/Legion2</url>
</developer>
<developer>
<name>Muhammed Kaya</name>
</developer>
<developer>
<name>Patrick Gebhardt</name>
</developer>
<developer>
<name>Patrick Singer</name>
</developer>
<developer>
<name>Tim Neumann</name>
</developer>
<developer>
<name>Tobias Siemonsen</name>
</developer>
</developers>
<properties>
<!-- Amy specific settings -->
<amy.plugin.build.dir>build/plugins</amy.plugin.build.dir>
<!-- General settings -->
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- External dependency versions. Only project wide or core dependencies
here -->
<junit.jupiter.version>5.1.0</junit.jupiter.version>
<junit.platform.version>1.1.0</junit.platform.version>
<hamcrest.version>1.3</hamcrest.version>
<mockito.version>2.21.0</mockito.version>
<jersey.version>2.27</jersey.version>
<jackson.version>2.27</jackson.version>
<javax.ws.rs.version>2.1</javax.ws.rs.version>
<slf4j.version>1.7.25</slf4j.version>
<httpcore.version>4.4.10</httpcore.version>
<swagger.version>2.0.2</swagger.version>
<commons-lang3.version>3.7</commons-lang3.version>
<cliche.version>110413</cliche.version>
<jersey-media-sse.version>2.27</jersey-media-sse.version>
</properties>
<modules>
<module>amy-master-node</module>
<module>di-api</module>
<module>di</module>
<module>api</module>
<module>utility</module>
<module>registry</module>
<module>http-server-api</module>
<module>http-server</module>
<module>testing-framework</module>
<module>core</module>
<module>plugin-manager-api</module>
<module>rest-resources</module>
<module>plugins</module>
<module>plugins/plugin-internal-preset.xml</module>
<module>plugins/alarmclock</module>
<module>plugins/calendar</module>
<module>plugins/email</module>
<module>plugins/example</module>
<module>plugins/spotify</module>
<module>plugins/systemtime</module>
<module>plugins/timer</module>
<module>plugins/weather</module>
<module>plugins/navigation</module>
<module>plugins/social</module>
<module>plugins/webpush</module>
<module>plugins/tosca</module>
<module>plugins/mensa</module>
<module>amy-message-hub-api</module>
<module>amy-message-hub</module>
<module>remote-sr</module>
<module>deployment-descriptor-utility</module>
<module>natlang-api</module>
<module>chat-socket</module>
<module>natlang</module>
<module>logger</module>
<module>persistence</module>
<module>persistence-api</module>
<module>development-database</module>
<module>generic-jdbc-adapter</module>
</modules>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit.platform.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.1</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<classpathDependencyExcludes>
<classpathDependencyExcludes>ch.qos.logback:logback-classic</classpathDependencyExcludes>
</classpathDependencyExcludes>
<includes>
<include>**/Test*.java</include>
<include>**/*Test.java</include>
<include>**/*Tests.java</include>
<include>**/*TestCase.java</include>
</includes>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>${junit.platform.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<followSymLinks>false</followSymLinks>
<filesets>
<fileset>
<directory>${project.basedir}/build</directory>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<tags>
<tag>
<name>apiNote</name>
<placement>a</placement>
<head>API Note:</head>
</tag>
<tag>
<name>implSpec</name>
<placement>a</placement>
<head>Implementation Requirements:</head>
</tag>
<tag>
<name>implNote</name>
<placement>a</placement>
<head>Implementation Note:</head>
</tag>
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<serverId>ossrh</serverId>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-natlang</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-chat-socket</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-natlang-api</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-di-api</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-message-hub-api</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-api</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-http-server-api</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-utility</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-plugin-manager-api</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>${javax.ws.rs.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${httpcore.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-nio</artifactId>
<version>${httpcore.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>25.1-jre</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
</dependencyManagement>
<ciManagement>
<system>Travis</system>
<url>https://travis-ci.com/AmyAssist/Amy</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/AmyAssist/Amy/issues</url>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>