<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>net.sourceforge.czt.dev</groupId>
    <artifactId>dev-parent</artifactId>
    <version>1.6-cdh</version>
  </parent>

  <artifactId>java-cup</artifactId>
  <version>0.11-a-czt02-cdh</version>
  <packaging>jar</packaging>

  <name>Java CUP Parser Generator</name>
  <description>
    CUP is a system for generating LALR parsers from simple specifications. It serves the same role
    as the widely used program YACC and in fact offers most of the features of YACC. However, CUP
    is written in Java, uses specifications including embedded Java code, and produces parsers
    which are implemented in Java.
  </description>
  
  <licenses>
    <license>
      <name>CUP License (MIT License)</name>
      <url>http://www2.cs.tum.edu/projects/cup/licence.html</url>
    </license>
  </licenses>
  
  <dependencies>
    <dependency>
      <groupId>net.sourceforge.czt.dev</groupId>
      <artifactId>java-cup-runtime</artifactId>
      <version>0.11-a-czt01-cdh</version>
    </dependency>
  </dependencies>

</project>