mule-extensions-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-extensions-api</artifactId> <version>1.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.mule.runtime</groupId> <artifactId>mule-extensions-api-parent</artifactId> <version>1.1.1</version> </parent> <artifactId>mule-extensions-api</artifactId> <version>1.1.1</version> <packaging>jar</packaging> <name>Mule Extensions API</name> <description>API for Mule Extensions to integrate with the Mule Runtime in a decoupled way</description> <url>https://github.com/mulesoft/mule-extensions-api</url> <properties> <formatterConfigPath>../formatter.xml</formatterConfigPath> </properties> <dependencies> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-api</artifactId> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-metadata-model-java</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guavaVersion}</version> </dependency> <dependency> <groupId>org.reactivestreams</groupId> <artifactId>reactive-streams</artifactId> <version>1.0.2</version> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-api</artifactId> <version>${muleApiVersion}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> </project>