cpl-preproc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.mind</groupId>
<artifactId>cpl-preproc</artifactId>
<version>2.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>org.ow2.mind</groupId>
<artifactId>mind-compiler</artifactId>
<version>2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cpl-preproc</artifactId>
<name>Mind C preprocessor</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>common-backend</artifactId>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<classifier>jdk15</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>plugin-loader</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>adl-frontend</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idl-frontend</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr3-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>${test.groups}</groups>
<systemPropertyVariables>
<default.file.level>FINEST</default.file.level>
<loggers.outfile>${project.build.testOutputDirectory}/test-log.txt</loggers.outfile>
<mind.test.cflags>-g -Wall -Werror -Wredundant-decls
-Wunreachable-code -Wstrict-prototypes
-Wwrite-strings</mind.test.cflags>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>