mule-extensions-api-dsql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.mule.runtime</groupId>
<artifactId>mule-extensions-api-dsql</artifactId>
<version>1.1.1</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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>mule-extensions-api-parent</artifactId>
<groupId>org.mule.runtime</groupId>
<version>1.1.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>mule-extensions-api-dsql</artifactId>
<version>1.1.1</version>
<packaging>jar</packaging>
<name>Mule Extensions API DSQL</name>
<description>API for Mule Extensions to add DateSense Query Language support.</description>
<url>https://github.com/mulesoft/mule-extensions-api</url>
<properties>
<antlrVersion>3.5</antlrVersion>
<skipCodeFormatting>true</skipCodeFormatting>
</properties>
<dependencies>
<dependency>
<groupId>org.mule.runtime</groupId>
<artifactId>mule-extensions-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
<version>${antlrVersion}</version>
<exclusions>
<exclusion>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr3-maven-plugin</artifactId>
<version>${antlrVersion}</version>
<configuration>
<sourceDirectory>${basedir}/src/main/resources/grammar</sourceDirectory>
<outputDirectory>${basedir}/src/main/java/org/mule/runtime/extension/internal</outputDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>antlr</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>