blob: 45efaed8cce79f9cd9d61d5c87a10ee5372c06cf [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.apache.maven.doxia.ide</groupId>
<artifactId>eclipse-plugins</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>features</artifactId>
<packaging>pom</packaging>
<name>Doxia Tools :: Eclipse IDE - Parent Features POM</name>
<description>Eclipse IDE - Parent Features POM</description>
<!-- dependencies in a parent pom are generally evil, but this
is a stopgap until I sort out a dispute with tycho -->
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia.ide</groupId>
<artifactId>dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
<modules>
<module>org.apache.maven.doxia.ide.eclipse.feature</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<deployableFeature>true</deployableFeature>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>categorization</id>
<phase>package</phase>
<goals>
<goal>category-p2-metadata</goal>
</goals>
</execution>
</executions>
<configuration>
<metadataRepositoryName>Apache Doxia Eclipse Editors</metadataRepositoryName>
<artifactRepositoryName>Apache Doxia Eclipse Editors</artifactRepositoryName>
<compressRepository>false</compressRepository>
</configuration>
</plugin>
</plugins>
</build>
</project>