alexa-skills-kit-tester-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.klerch</groupId> <artifactId>alexa-skills-kit-tester-java</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>io.klerch</groupId> <artifactId>alexa-skills-kit-tester-java</artifactId> <version>1.1.0</version> <packaging>jar</packaging> <name>Alexa Skills Kit Tester for Java</name> <description>This framework lets you script and execute complex interactions with your Alexa skill in order to simulate a user's conversation.</description> <url>https://github.com/KayLerch/alexa-skills-kit-tester-java</url> <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> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE, Version 3.0</name> <url>https://www.gnu.org/licenses/gpl.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <url>https://github.com/KayLerch/alexa-skills-kit-tester-java/issues</url> <system>GitHub Issues</system> </issueManagement> <scm> <connection>scm:git:git://github.com/KayLerch/alexa-skills-kit-tester-java.git</connection> <developerConnection>scm:git:ssh://github.com:KayLerch/alexa-skills-kit-tester-java.git</developerConnection> <url>https://github.com/KayLerch/alexa-skills-kit-tester-java</url> </scm> <developers> <developer> <id>klerch</id> <name>Kay Lerch</name> <email>me@klerch.io</email> <url>http://www.klerch.io</url> </developer> </developers> <properties> <maven.surefire.failsafe.version>2.16</maven.surefire.failsafe.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <aws.version>1.11.218</aws.version> <aws.lambda.version>1.1.0</aws.lambda.version> <aws.log4j.version>1.0.0</aws.log4j.version> <junit.version>4.12</junit.version> <mockito.version>1.10.19</mockito.version> <alexa-skillskit-version>1.8.1</alexa-skillskit-version> <sonar-jacoco-listeners.version>3.8</sonar-jacoco-listeners.version> <sonar.junit.reportsPath>${project.basedir}/target/surefire-reports</sonar.junit.reportsPath> <sonar.jacoco.itReportPath>${project.basedir}/target/jacoco-it.exec</sonar.jacoco.itReportPath> <sonar.language>java</sonar.language> <sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <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.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>io.klerch.alexa.test.Console</mainClass> </transformer> </transformers> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.failsafe.version}</version> <configuration> <properties> <property> <name>listener</name> <value>org.sonar.java.jacoco.JUnitListener</value> </property> </properties> </configuration> </plugin> <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.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.7.201606060606</version> <configuration> <append>true</append> </configuration> <executions> <execution> <id>agent-for-ut</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>agent-for-it</id> <goals> <goal>prepare-agent-integration</goal> </goals> </execution> <execution> <id>jacoco-site</id> <phase>site</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <defaultAuthor>Kay Lerch</defaultAuthor> <failOnError>false</failOnError> <!-- Do output to docs only on demand --> <!-- <outputDirectory>docs</outputDirectory> <reportOutputDirectory>docs</reportOutputDirectory> --> </configuration> <executions> <execution> <id>generate-javadocs</id> <phase>site</phase> <goals> <goal>javadoc</goal> </goals> </execution> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.amazon.alexa</groupId> <artifactId>alexa-skills-kit</artifactId> <version>${alexa-skillskit-version}</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-lambda</artifactId> <version>${aws.version}</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-lambda-java-log4j</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> <version>${aws.version}</version> </dependency> <dependency> <groupId>com.esotericsoftware.yamlbeans</groupId> <artifactId>yamlbeans</artifactId> <version>1.12</version> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.3.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.sonarsource.java</groupId> <artifactId>sonar-jacoco-listeners</artifactId> <version>${sonar-jacoco-listeners.version}</version> <scope>test</scope> </dependency> </dependencies> </project>