mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-23 08:34:11 -08:00
35 lines
1.1 KiB
XML
35 lines
1.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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.teavm</groupId>
|
|
<artifactId>teavm-maven</artifactId>
|
|
<version>0.3.0-SNAPSHOT</version>
|
|
</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> |