mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-23 00:24:11 -08:00
60 lines
1.8 KiB
XML
60 lines
1.8 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>
|
||
|
<version>0.2-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>teavm-eclipse</artifactId>
|
||
|
<packaging>bundle</packaging>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>swt-repo</id>
|
||
|
<url>https://swt-repo.googlecode.com/svn/repo/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.teavm</groupId>
|
||
|
<artifactId>teavm-core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.teavm</groupId>
|
||
|
<artifactId>teavm-chrome-rdp</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.core</groupId>
|
||
|
<artifactId>runtime</artifactId>
|
||
|
<version>3.9.100-v20131218-1515</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.swt</groupId>
|
||
|
<artifactId>org.eclipse.swt.win32.win32.x86</artifactId>
|
||
|
<version>4.2.2</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.felix</groupId>
|
||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||
|
<extensions>true</extensions>
|
||
|
<configuration>
|
||
|
<instructions>
|
||
|
<Export-Package>org.teavm.eclipse.*</Export-Package>
|
||
|
<Bundle-SymbolicName>teavm-eclipse</Bundle-SymbolicName>
|
||
|
</instructions>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|