8000 jflex/cup-maven-plugin at master · jflex-de/jflex · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History

cup-maven-plugin

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

CUP Maven plugin

This is a plugin to invoke cup from Maven.

Version 1.3 of the plugin uses CUP 11b.

Usage

By default, this plugin runs

cup -destdir target/generated-sources/cup -parser parser -symbols sym src/main/cup/*.cup
      <plugin>
        <groupId>de.jflex</groupId>
        <artifactId>cup-maven-plugin</artifactId>
        <version>1.3</version>
        <executions>
          <execution>
            <goals>
              <goal>generate</goal>
            </goals>
            <configuration>
            </configuration>
          </execution>
        </executions>
      </plugin>

Example

Please see cup/sample-project

0