archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ask-sdk-maven-plugins Show documentation
Show all versions of ask-sdk-maven-plugins Show documentation
Maven plugins for the ASK SDK and/or associated frameworks.
The newest version!
<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>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <packaging>jar</packaging> <name>${skillName}</name> <dependencies> <dependency> <groupId>com.amazon.alexa</groupId> <artifactId>ask-sdk-mvc</artifactId> <version>0.1.0</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>1.8</source> <target>1.8</target> <forceJavacCompilerUse>true</forceJavacCompilerUse> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <!-- synthesize interaction model --> <plugin> <groupId>com.amazon.alexa</groupId> <artifactId>ask-sdk-maven-plugins</artifactId> <version>0.1.1</version> <configuration> <destinationDir>${project.build.directory}/ask</destinationDir> <className>${package}.${skillName}Skill</className> <locales> <param>en_US</param> </locales> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>build-model</goal> </goals> </execution> </executions> </plugin> <!-- superjar --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>