<?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">

    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.lsst</groupId>
        <artifactId>org-lsst-ccs-ui-parent</artifactId>
        <version>5.0.1</version>
        <relativePath>../</relativePath>
    </parent>

    <artifactId>org-lsst-ccs-ui-annotations</artifactId>
    <name>LSST CCS GUI Annotations</name>
    <description>LSST CCS GUI annotations and processors.</description>
    <packaging>jar</packaging>
    <url>${org.lsst.ccs.site.url.base}${org.lsst.ccs.site.dir}</url>


    <properties>
        <org.lsst.ccs.site.dir>site-root/ui/org-lsst-ccs-ui-parent/${project.version}/</org.lsst.ccs.site.dir>
    </properties>

    <dependencies>
        <dependency>
            <artifactId>dom4j</artifactId>
            <groupId>dom4j</groupId>
            <version>1.6.1</version>
        </dependency>
    </dependencies>
    
    <build>
      <plugins>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <compilerArgument>-proc:none</compilerArgument> 
          </configuration>
        </plugin>
      </plugins>
    </build>

</project>

