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

    <parent>
        <groupId>com.kaazing</groupId>
        <artifactId>enterprise.java.client</artifactId>
        <version>4.2.6</version>
        <relativePath>../</relativePath>
    </parent>

    <groupId>com.kaazing</groupId>
    <artifactId>enterprise.java.client.kerberos.common</artifactId>
    <name>Kaazing Enterprise Java Client - WebSocket Kerberos</name>
    <version>4.2.6</version>
    <packaging>pom</packaging>

    <url>https://github.com/kaazing/enterprise.java.client</url>
    <scm>
        <connection>scm:git:${project.scm.url}</connection>
        <developerConnection>scm:git:${project.scm.url}</developerConnection>
        <url>git@github.com:kaazing/enterprise.java.client.git</url>
      <tag>4.2.6</tag>
  </scm>

    <modules>
        <module>kerberos</module>
        <module>demo</module>
    </modules>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <type>jar</type>
            <optional>false</optional>
        </dependency>
        <dependency>
            <groupId>org.jmock</groupId>
            <artifactId>jmock</artifactId>
            <type>jar</type>
            <optional>false</optional>
        </dependency>
        <dependency>
            <groupId>org.jmock</groupId>
            <artifactId>jmock-legacy</artifactId>
            <type>jar</type>
            <optional>false</optional>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.7</version>
            </plugin>
        </plugins>
    </build>

    <properties>
        <jgitflow.masterBranchName>master-5.0</jgitflow.masterBranchName>
        <jgitflow.developBranchName>support-5.0</jgitflow.developBranchName>
    </properties>
</project>

