64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Copyright (c) 2012-2017 Codenvy, S.A.
|
|
All rights reserved. This program and the accompanying materials
|
|
are made available under the terms of the Eclipse Public License v1.0
|
|
which accompanies this distribution, and is available at
|
|
http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
Contributors:
|
|
Codenvy, S.A. - initial API and implementation
|
|
|
|
-->
|
|
<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>
|
|
<artifactId>che-plugin-java-ext-jdt-parent</artifactId>
|
|
<groupId>org.eclipse.che.plugin</groupId>
|
|
<version>5.8.0</version>
|
|
</parent>
|
|
<artifactId>org.eclipse.ui.ide</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Che Plugin :: Java :: Eclipse IDE UI</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.core.jobs</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.equinox.common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.plugin</groupId>
|
|
<artifactId>org.eclipse.core.filesystem</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.plugin</groupId>
|
|
<artifactId>org.eclipse.core.resources</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.plugin</groupId>
|
|
<artifactId>org.eclipse.jface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.mycila</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/org/eclipse/ui/**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|