<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>io.apiman</groupId>
    <artifactId>apiman-gateway</artifactId>
    <version>1.0.2.Final</version>
  </parent>
  <artifactId>apiman-gateway-platforms</artifactId>
  <packaging>pom</packaging>
  <name>apiman-gateway-platforms</name>

  <modules>
    <module>servlet</module>
    <module>undertow</module>
    <module>war</module>
    <module>war/wildfly8</module>
  </modules>
  
  <profiles>
    <profile>
      <id>vertx</id>
      <activation>
        <activeByDefault>false</activeByDefault>
      </activation>
      <modules>
        <module>vertx</module>
      </modules>
    </profile>
  </profiles>

</project>
