<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">
  <modelVersion>4.0.0</modelVersion>
  
  <parent>
    <artifactId>citrus</artifactId>
    <groupId>com.consol.citrus</groupId>
    <version>2.8.0</version>
    <relativePath>../../pom.xml</relativePath>
  </parent>

  <groupId>com.consol.citrus.model</groupId>
  <artifactId>citrus-model</artifactId>
  <name>citrus-model</name>
  <packaging>pom</packaging>
  
  <modules>
    <module>model-core</module>
    <module>model-jdbc</module>
    <module>model-jms</module>
    <module>model-kafka</module>
    <module>model-http</module>
    <module>model-websocket</module>
    <module>model-ssh</module>
    <module>model-ws</module>
    <module>model-mail</module>
    <module>model-vertx</module>
    <module>model-camel</module>
    <module>model-ftp</module>
    <module>model-docker</module>
    <module>model-kubernetes</module>
    <module>model-rmi</module>
    <module>model-jmx</module>
    <module>model-cucumber</module>
    <module>model-zookeeper</module>
    <module>model-selenium</module>
  </modules>

  <dependencies>
    <!-- JaxB Bindings (API and implementation) -->
    <dependency>
      <groupId>javax.xml.bind</groupId>
      <artifactId>jaxb-api</artifactId>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.bind</groupId>
      <artifactId>jaxb-core</artifactId>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.bind</groupId>
      <artifactId>jaxb-impl</artifactId>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <failIfNoTests>false</failIfNoTests>
        </configuration>
      </plugin>

      <plugin>
        <artifactId>maven-failsafe-plugin</artifactId>
        <configuration>
          <failIfNoTests>false</failIfNoTests>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

