2014-10-05 04:45:44 -07:00
|
|
|
<!--
|
|
|
|
Copyright 2014 Alexey Andreev.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
<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-samples</artifactId>
|
2014-10-13 06:33:25 -07:00
|
|
|
<version>0.3.0-SNAPSHOT</version>
|
2014-10-05 04:45:44 -07:00
|
|
|
</parent>
|
|
|
|
<artifactId>teavm-samples-benchmark</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<name>TeaVM performance benchmark</name>
|
|
|
|
<description>Compares performance of the JavaScript code produced by TeaVM and GWT</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-classlib</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2015-02-25 02:48:28 -08:00
|
|
|
<scope>provided</scope>
|
2014-10-05 04:45:44 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-jso</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2015-02-25 02:48:28 -08:00
|
|
|
<scope>provided</scope>
|
2014-10-05 04:45:44 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-dom</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2015-02-25 02:48:28 -08:00
|
|
|
<scope>provided</scope>
|
2014-10-05 04:45:44 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jbox2d</groupId>
|
|
|
|
<artifactId>jbox2d-library</artifactId>
|
|
|
|
<version>2.2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jbox2d</groupId>
|
|
|
|
<artifactId>jbox2d-library</artifactId>
|
|
|
|
<version>2.2.1.1</version>
|
|
|
|
<classifier>sources</classifier>
|
2015-02-25 02:48:28 -08:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apidesign.bck2brwsr</groupId>
|
|
|
|
<artifactId>emul</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<classifier>rt</classifier>
|
2014-10-05 04:45:44 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
2014-12-01 23:41:27 -08:00
|
|
|
<version>2.7.0</version>
|
2014-10-05 04:45:44 -07:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-02-25 03:23:16 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.dukescript.canvas</groupId>
|
|
|
|
<artifactId>html5-canvas</artifactId>
|
|
|
|
<version>0.7.1</version>
|
|
|
|
</dependency>
|
2014-10-05 04:45:44 -07:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<webResources>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.build.directory}/generated/js</directory>
|
|
|
|
</resource>
|
|
|
|
</webResources>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-25 02:48:28 -08:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
2014-10-05 04:45:44 -07:00
|
|
|
<executions>
|
2015-02-25 02:48:28 -08:00
|
|
|
<execution>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>org.teamvm.samples.benchmark.bck2brwsr.BenchmarkStarter</mainClass>
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
|
|
<useUniqueVersions>false</useUniqueVersions>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/gwt/*</exclude>
|
|
|
|
<exclude>**/teavm/*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2014-10-05 04:45:44 -07:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-25 02:48:28 -08:00
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-maven-plugin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>web-client</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>build-javascript</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<targetDirectory>${project.build.directory}/generated/js/teavm</targetDirectory>
|
|
|
|
<mainClass>org.teavm.samples.benchmark.teavm.BenchmarkStarter</mainClass>
|
|
|
|
<runtime>SEPARATE</runtime>
|
|
|
|
<minifying>false</minifying>
|
|
|
|
<debugInformationGenerated>true</debugInformationGenerated>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>gwt-maven-plugin</artifactId>
|
|
|
|
<version>2.7.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<optimizationLevel>9</optimizationLevel>
|
|
|
|
<compileSourcesArtifacts>
|
|
|
|
<item>org.jbox2d:jbox2d-library</item>
|
|
|
|
</compileSourcesArtifacts>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apidesign.bck2brwsr</groupId>
|
|
|
|
<artifactId>bck2brwsr-maven-plugin</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>aot</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2014-10-05 04:45:44 -07:00
|
|
|
<configuration>
|
2015-02-25 02:48:28 -08:00
|
|
|
<obfuscation>NONE</obfuscation>
|
|
|
|
<classPathPrefix>lib</classPathPrefix>
|
|
|
|
<mainJavaScript>${project.build.directory}/generated/js/b2b-benchmark.js</mainJavaScript>
|
|
|
|
<vm>${project.build.directory}/generated/js/bck2brwsr.js</vm>
|
|
|
|
<exports>
|
|
|
|
<export>org.teavm.samples.benchmark.bck2brwsr.BenchmarkStarter</export>
|
|
|
|
<export>org/jbox2d/collision/shapes/</export>
|
|
|
|
<export>org/jbox2d/common/</export>
|
|
|
|
<export>org/jbox2d/dynamics/</export>
|
|
|
|
<export>org/jbox2d/dynamics/joints/</export>
|
|
|
|
</exports>
|
2014-10-05 04:45:44 -07:00
|
|
|
</configuration>
|
2015-02-25 02:48:28 -08:00
|
|
|
</plugin>
|
2014-10-05 04:45:44 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>../../checkstyle.xml</configLocation>
|
|
|
|
<propertyExpansion>config_loc=${basedir}/../..</propertyExpansion>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|