mule-metadata-model-raml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-metadata-model-raml</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mule.runtime</groupId> <artifactId>mule-metadata-model-parent</artifactId> <version>1.1.1</version> </parent> <artifactId>mule-metadata-model-raml</artifactId> <properties> <formatterConfigPath>../formatter.xml</formatterConfigPath> <joda.time.version>2.9.1</joda.time.version> <snakeyaml.version>1.18</snakeyaml.version> </properties> <dependencies> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-metadata-model-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-metadata-model-json</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-metadata-model-xml</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.raml</groupId> <artifactId>raml-parser-2</artifactId> <version>${raml.parser.2.version}</version> <exclusions> <exclusion> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </exclusion> <exclusion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>${joda.time.version}</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${snakeyaml.version}</version> </dependency> </dependencies> </project>