cup-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.jflex</groupId> <artifactId>cup-maven-plugin</artifactId> <version>1.3</version> </dependency>
<?xml version="1.0"?> <!-- Copyright 2022, Gerwin Klein, Régis Décamps, Steve Rowe SPDX-License-Identifier: BSD-3-Clause --> <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"> <parent> <groupId>de.jflex</groupId> <artifactId>jflex-parent</artifactId> <version>1.9.0</version> <relativePath>../pom.xml</relativePath> </parent> <version>1.3</version> <modelVersion>4.0.0</modelVersion> <artifactId>cup-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>CUP Maven plugin</name> <description>A plugin to generate Java parsers with CUP.</description> <developers> <developer> <id>regisd</id> <name>Régis Décamps</name> <organization>Google, Inc.</organization> </developer> </developers> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.github.vbmacher</groupId> <artifactId>java-cup</artifactId> <version>11b-20160615-1</version> </dependency> <dependency> <groupId>com.github.vbmacher</groupId> <artifactId>java-cup-runtime</artifactId> <version>11b-20160615-1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>resources</directory> </resource> </resources> </build> </project>