122 lines
3.5 KiB
XML
122 lines
3.5 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>
|
|
|
|
<parent>
|
|
<groupId>it.cavallium</groupId>
|
|
<artifactId>warppi</artifactId>
|
|
<version>${project.version}</version>
|
|
</parent>
|
|
<artifactId>warppi-teavm</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>WarpPI Calculator TeaVM</name>
|
|
<description>WarpPI Calculator teavm project</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>it.cavallium</groupId>
|
|
<artifactId>warppi-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>it.cavallium</groupId>
|
|
<artifactId>warppi-rules</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.teavm</groupId>
|
|
<artifactId>teavm-classlib</artifactId>
|
|
<version>0.6.0-dev-567</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>teavm-dev</id>
|
|
<url>https://dl.bintray.com/konsoletyper/teavm</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<layout>default</layout>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>1_teavm-dev</id>
|
|
<url>https://dl.bintray.com/konsoletyper/teavm</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<layout>default</layout>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>org.teavm:*</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<Import-Package>*</Import-Package>
|
|
<Export-Package>it.cavallium.warppi.*</Export-Package>
|
|
<Bundle-SymbolicName>warppi-teavm</Bundle-SymbolicName>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<release>${maven.compiler.release}</release>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.teavm</groupId>
|
|
<artifactId>teavm-maven-plugin</artifactId>
|
|
<version>0.6.0-dev-567</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
<phase>install</phase>
|
|
<configuration>
|
|
<mainClass>it.cavallium.warppi.teavm.TeaVMBoot</mainClass>
|
|
<mainPageIncluded>true</mainPageIncluded>
|
|
<debugInformationGenerated>true</debugInformationGenerated>
|
|
<sourceMapsGenerated>true</sourceMapsGenerated>
|
|
<sourceFilesCopied>true</sourceFilesCopied>
|
|
<optimizationLevel>FULL</optimizationLevel>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|