2014-09-25 12:54:13 -07:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-maven</artifactId>
|
2015-10-21 22:25:53 -07:00
|
|
|
<version>0.4.0</version>
|
2014-09-25 12:54:13 -07:00
|
|
|
</parent>
|
|
|
|
<artifactId>teavm-maven-webapp</artifactId>
|
|
|
|
<name>TeaVM maven web application archetype</name>
|
|
|
|
|
|
|
|
<packaging>maven-archetype</packaging>
|
|
|
|
|
|
|
|
<description>An archetype that creates a simple web application with enabled TeaVM</description>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<extensions>
|
|
|
|
<extension>
|
|
|
|
<groupId>org.apache.maven.archetype</groupId>
|
|
|
|
<artifactId>archetype-packaging</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</extension>
|
|
|
|
</extensions>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-archetype-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|