idl-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.objectweb.fractal.mind.compiler</groupId>
<artifactId>idl-parser</artifactId>
<version>0.1-beta-2</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.objectweb.fractal.mind.compiler</groupId>
<artifactId>mind-compiler</artifactId>
<version>0.1-beta-2</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>
<resources>
<!-- Include LICENSES.txt file in package. -->
<resource>
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>LICENSES.txt</include>
</includes>
</resource>
<resource>
<directory>${basedir}/src/main/resources</directory>
</resource>
</resources>
<plugins>
<!-- Enable JavaCC compilation -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javacc-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>