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>
|
2015-06-30 17:00:35 +08:00
|
|
|
<version>0.4.0-SNAPSHOT</version>
|
2013-10-27 16:16:07 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>teavm-classlib</artifactId>
|
|
|
|
|
2014-09-20 03:00:35 +08:00
|
|
|
<packaging>bundle</packaging>
|
|
|
|
|
2014-10-05 19:45:44 +08:00
|
|
|
<name>TeaVM Java class library</name>
|
|
|
|
<description>TeaVM Java class library emulation</description>
|
|
|
|
|
2015-01-13 23:17:18 +08:00
|
|
|
<properties>
|
|
|
|
<teavm.classlib.test.incremental>false</teavm.classlib.test.incremental>
|
|
|
|
</properties>
|
|
|
|
|
2013-10-27 16:16:07 +08:00
|
|
|
<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>
|
2014-06-06 22:18:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-platform</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-12-17 16:03:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2013-11-11 02:49:56 +08:00
|
|
|
</dependency>
|
2015-02-07 22:36:18 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-jso</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2015-09-10 17:11:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-jso-impl</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</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>
|
2014-11-05 03:04:46 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
|
<artifactId>jzlib</artifactId>
|
|
|
|
<version>1.1.3</version>
|
|
|
|
</dependency>
|
2015-05-13 02:40:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
</dependency>
|
2013-10-27 16:16:07 +08:00
|
|
|
</dependencies>
|
2013-12-17 16:03:27 +08:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2015-07-23 20:31:49 +08:00
|
|
|
<!--
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>../checkstyle.xml</configLocation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
-->
|
2014-09-20 03:00:35 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Export-Package>org.teavm.classlib.*</Export-Package>
|
|
|
|
<Bundle-SymbolicName>teavm-classlib</Bundle-SymbolicName>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</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>
|
2015-05-19 22:41:42 +08:00
|
|
|
<id>generate-classlib-doc</id>
|
2014-03-05 21:47:47 +08:00
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-test-classes</phase>
|
2015-05-19 22:41:42 +08:00
|
|
|
<configuration>
|
|
|
|
<mainClass>org.teavm.classlib.impl.report.JCLComparisonBuilder</mainClass>
|
|
|
|
<arguments>
|
|
|
|
<argument>java.lang</argument>
|
|
|
|
<argument>java.lang.annotation</argument>
|
|
|
|
<argument>java.lang.reflect</argument>
|
|
|
|
<argument>java.io</argument>
|
|
|
|
<argument>java.math</argument>
|
|
|
|
<argument>java.net</argument>
|
|
|
|
<argument>java.nio</argument>
|
|
|
|
<argument>java.nio.charset</argument>
|
|
|
|
<argument>java.text</argument>
|
|
|
|
<argument>java.util</argument>
|
|
|
|
<argument>java.util.concurrent</argument>
|
2015-08-02 02:54:47 +08:00
|
|
|
<argument>java.util.function</argument>
|
|
|
|
<argument>java.util.logging</argument>
|
2015-05-19 22:41:42 +08:00
|
|
|
<argument>java.util.regex</argument>
|
|
|
|
<argument>java.util.zip</argument>
|
|
|
|
<argument>-output</argument>
|
|
|
|
<argument>${project.build.directory}/jcl-report</argument>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>generate-tz-cache</id>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.teavm.classlib.impl.tz.TimeZoneCache</mainClass>
|
|
|
|
<arguments>
|
|
|
|
<argument>${project.build.directory}/classes/org/teavm/classlib/impl/tz/cache</argument>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
2014-03-05 21:47:47 +08:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</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>
|