94 lines
3.4 KiB
XML
94 lines
3.4 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.5.0</version>
|
|
</parent>
|
|
<artifactId>org.eclipse.search</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Che Plugin :: Java :: Eclipse Search</name>
|
|
<properties>
|
|
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
|
</properties>
|
|
<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.core.runtime</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.filebuffers</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.core</groupId>
|
|
<artifactId>contenttype</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.search</groupId>
|
|
<artifactId>org.eclipse.search</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.text</groupId>
|
|
<artifactId>org.eclipse.text</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>org.eclipse.equinox.common</artifactId>
|
|
<groupId>org.eclipse.equinox</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.mycila</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/org/eclipse/search/**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|