2013-12-20 16:45:28 +08:00
|
|
|
<!--
|
|
|
|
Copyright 2013 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.
|
|
|
|
-->
|
2013-10-27 16:16:07 +08: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</artifactId>
|
2014-03-19 05:48:43 +08:00
|
|
|
<version>0.2-SNAPSHOT</version>
|
2013-10-27 16:16:07 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>teavm-classlib</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-11-11 02:49:56 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2013-12-17 16:03:27 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2013-11-11 02:49:56 +08:00
|
|
|
</dependency>
|
2014-05-13 22:31:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.2.4</version>
|
|
|
|
</dependency>
|
2013-10-27 16:16:07 +08:00
|
|
|
</dependencies>
|
2013-12-17 16:03:27 +08:00
|
|
|
|
2014-03-20 03:14:12 +08:00
|
|
|
<name>TeaVM JCL</name>
|
|
|
|
<description>TeaVM Java class library emulation</description>
|
|
|
|
|
2013-12-17 16:03:27 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-maven-plugin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>generate-javascript-tests</id>
|
|
|
|
<goals>
|
2014-02-20 00:46:17 +08:00
|
|
|
<goal>build-test-javascript</goal>
|
2013-12-17 16:03:27 +08:00
|
|
|
</goals>
|
|
|
|
<phase>process-test-classes</phase>
|
|
|
|
<configuration>
|
2014-01-27 20:02:23 +08:00
|
|
|
<minifying>false</minifying>
|
2014-01-29 21:35:27 +08:00
|
|
|
<numThreads>1</numThreads>
|
2013-12-17 16:03:27 +08:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-03-05 21:47:47 +08:00
|
|
|
<plugin>
|
2014-03-18 22:02:15 +08:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
2014-03-05 21:47:47 +08:00
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-test-classes</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2014-03-16 05:54:47 +08:00
|
|
|
<mainClass>org.teavm.classlib.impl.report.JCLComparisonBuilder</mainClass>
|
2014-03-05 21:47:47 +08:00
|
|
|
<arguments>
|
|
|
|
<argument>java.lang</argument>
|
|
|
|
<argument>java.lang.annotation</argument>
|
|
|
|
<argument>java.lang.reflect</argument>
|
|
|
|
<argument>java.io</argument>
|
|
|
|
<argument>java.net</argument>
|
|
|
|
<argument>java.util</argument>
|
|
|
|
<argument>java.util.logging</argument>
|
|
|
|
<argument>java.util.concurrent</argument>
|
|
|
|
<argument>-output</argument>
|
2014-03-06 03:39:35 +08:00
|
|
|
<argument>${project.build.directory}/jcl-report</argument>
|
2014-03-05 21:47:47 +08:00
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-03-20 03:14:12 +08:00
|
|
|
<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>
|
2013-12-17 16:03:27 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-03-20 03:14:12 +08:00
|
|
|
</project>
|