mirror of
https://github.com/jlengrand/github-templates.git
synced 2026-03-10 08:21:22 +00:00
67 lines
2.1 KiB
XML
67 lines
2.1 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>alexa-skills-kit-samples</groupId>
|
|
<artifactId>helloworld</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>1.0</version>
|
|
<name>helloworld</name>
|
|
<url>http://developer.amazon.com/ask</url>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<name>Alexa Skills Kit</name>
|
|
<email>ask-sdk-java@amazon.com</email>
|
|
<organization>Alexa</organization>
|
|
<organizationUrl>http://developer.amazon.com/ask</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git:https://github.com/amzn/alexa-skills-kit-java.git</connection>
|
|
<developerConnection>scm:git:https://github.com/amzn/alexa-skills-kit-java.git</developerConnection>
|
|
<url>https://github.com/amzn/alexa-skills-kit-java.git</url>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.amazon.alexa</groupId>
|
|
<artifactId>ask-sdk</artifactId>
|
|
<version>2.20.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kohsuke</groupId>
|
|
<artifactId>github-api</artifactId>
|
|
<version>1.122</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.javatuples</groupId>
|
|
<artifactId>javatuples</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.7.0</version>
|
|
<configuration>
|
|
<source>11</source>
|
|
<target>11</target>
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
</project>
|