<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">
  <parent>
    <groupId>com.addc</groupId>
    <artifactId>addc-commons</artifactId>
    <version>2.2</version>
    <relativePath>../addc-commons</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>addc-iiop</artifactId>
  <packaging>jar</packaging>
  <name>addc-iiop</name>
  <description>
   the addc-iiop library supplies helper classes for dealing with corbalocs as Service URLs and configuring the properties for an ORB from
   a general process properties file using tags.
  </description>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <configuration>
          <instrumentation>
            <excludes>
              <exclude>**/*Exception.class</exclude>
              <exclude>**/*Constants.class</exclude>
              <exclude>com/addc/commons/iiop/io/*.class</exclude>
            </excludes>
          </instrumentation>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>artifact-javadoc</id>
            <configuration>
              <quiet>true</quiet>
              <failOnWarnings>false</failOnWarnings>
              <excludePackageNames>*.iiop.io</excludePackageNames>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-base</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-jmx</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-alerts</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-ssl</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-slp</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-security</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.snmp4j</groupId>
      <artifactId>snmp4j</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>javax.mail</groupId>
      <artifactId>mail</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jacorb</groupId>
      <artifactId>jacorb</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-base</artifactId>
      <version>${project.version}</version>
      <classifier>tests</classifier>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-test</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
