idl-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.mind</groupId>
<artifactId>idl-parser</artifactId>
<version>2.0</version>
</dependency><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.ow2.mind</groupId>
<artifactId>mind-compiler</artifactId>
<version>2.0</version>
</parent>
<artifactId>idl-parser</artifactId>
<packaging>jar</packaging>
<name>IDL Parser</name>
<description>
Contains the parser of the IDL language of the Mind programming model.
</description>
<dependencies>
<dependency>
<groupId>org.objectweb.fractal.fractaladl</groupId>
<artifactId>ast-core</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Enable JavaCC compilation -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javacc-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>