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-12-24 10:26:29 -08:00
|
|
|
<version>1.0.0-SNAPSHOT</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>
|
2017-02-15 11:48:51 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<configuration>
|
|
|
|
<escapeString>\</escapeString>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-09-25 12:54:13 -07:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2017-02-15 11:48:51 -08:00
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>archetype-resources/pom.xml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<excludes>
|
|
|
|
<exclude>archetype-resources/pom.xml</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2014-09-25 12:54:13 -07:00
|
|
|
</build>
|
|
|
|
</project>
|