2014-09-25 02:20:41 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
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-eclipse</artifactId>
|
2017-02-16 10:37:42 -08:00
|
|
|
<version>0.5.0-SNAPSHOT</version>
|
2014-09-25 02:20:41 -07:00
|
|
|
</parent>
|
|
|
|
<artifactId>teavm-eclipse-m2e-plugin</artifactId>
|
|
|
|
|
2014-09-25 12:54:13 -07:00
|
|
|
<packaging>eclipse-plugin</packaging>
|
|
|
|
|
|
|
|
<name>TeaVM m2e plugin</name>
|
|
|
|
<description>Contains plugin that automatically configures TeaVM builder from pom.xml</description>
|
|
|
|
|
2014-09-25 02:59:38 -07:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm-eclipse-plugin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2014-09-25 02:20:41 -07:00
|
|
|
</project>
|