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">
|
2013-09-24 04:09:15 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm</artifactId>
|
2017-06-20 01:50:19 +08:00
|
|
|
<version>0.6.0-SNAPSHOT</version>
|
2013-09-24 04:09:15 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>teavm-core</artifactId>
|
|
|
|
|
2014-07-31 03:32:42 +08:00
|
|
|
<packaging>bundle</packaging>
|
|
|
|
|
2016-02-23 23:46:32 +08:00
|
|
|
<name>TeaVM core</name>
|
|
|
|
<description>TeaVM compiler and SPI</description>
|
|
|
|
|
2013-09-24 04:09:15 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2014-02-19 21:52:07 +08:00
|
|
|
<scope>provided</scope>
|
2013-09-24 04:09:15 +08:00
|
|
|
</dependency>
|
2016-02-23 04:59:54 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
2016-07-29 00:57:16 +08:00
|
|
|
<artifactId>teavm-interop</artifactId>
|
2016-02-23 04:59:54 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2017-11-20 06:51:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-metaprogramming-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-09-24 04:09:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-03-15 02:24:25 +08:00
|
|
|
<groupId>org.ow2.asm</groupId>
|
2013-09-24 04:09:15 +08:00
|
|
|
<artifactId>asm-debug-all</artifactId>
|
2014-03-15 04:43:13 +08:00
|
|
|
</dependency>
|
2015-02-23 02:19:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.carrotsearch</groupId>
|
|
|
|
<artifactId>hppc</artifactId>
|
2018-03-21 00:10:36 +08:00
|
|
|
<version>0.7.3</version>
|
2015-02-23 02:19:35 +08:00
|
|
|
</dependency>
|
2015-10-10 03:54:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2013-09-24 04:09:15 +08:00
|
|
|
</dependencies>
|
2014-03-05 16:54:26 +08:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-03-19 05:37:07 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2014-08-31 03:29:24 +08:00
|
|
|
<configuration>
|
|
|
|
<configLocation>../checkstyle.xml</configLocation>
|
|
|
|
</configuration>
|
2014-03-19 05:37:07 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2014-03-20 03:14:12 +08:00
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2014-03-19 05:37:07 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2014-03-20 03:14:12 +08:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2014-03-19 05:37:07 +08:00
|
|
|
</plugin>
|
2014-07-31 03:32:42 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Export-Package>org.teavm.*</Export-Package>
|
|
|
|
<Bundle-SymbolicName>teavm-core</Bundle-SymbolicName>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-03-05 16:54:26 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
2014-03-19 05:37:07 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
<configuration>
|
|
|
|
<show>protected</show>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-03-05 16:54:26 +08:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
2014-03-20 03:14:12 +08:00
|
|
|
</project>
|