<?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/maven-v4_0_0.xsd">

  <parent>
    <groupId>org.drools</groupId>
    <artifactId>drools-eclipse</artifactId>
    <version>6.2.0.Beta2</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <artifactId>org.guvnor.tools.feature</artifactId>
  <packaging>eclipse-feature</packaging>

  <name>Drools :: Eclipse :: Guvnor tools feature</name>
  <description>Guvnor Eclipse plugin feature</description>
  <!-- maven-enforcer-plugin disabled because build fails when having enforce-plugin-versions rule enabled
 this has to be fixed, since kie-eap-integration has a lot of different hard coded versions -->
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-enforcer-plugin</artifactId>
        <executions>
          <execution>
            <id>enforce-plugin-versions</id>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <skip>true</skip>
            </configuration>
          </execution>
          <execution>
            <id>no-managed-deps</id>
            <goals>
              <goal>enforce</goal>
            </goals>
            <phase>initialize</phase>
            <configuration>
              <skip>true</skip>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
