modello-plugin-snakeyaml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.modello</groupId> <artifactId>modello-plugin-snakeyaml</artifactId> <version>2.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.modello</groupId> <artifactId>modello-plugins</artifactId> <version>2.2.0</version> </parent> <artifactId>modello-plugin-snakeyaml</artifactId> <name>Modello SnakeYaml Plugin</name> <description>Modello SnakeYaml Plugin generates YAML readers and writers based on SnakeYaml Streaming APIs, plus reader delegates to be able to read multiple model versions.</description> <dependencies> <dependency> <groupId>org.codehaus.modello</groupId> <artifactId>modello-plugin-java</artifactId> </dependency> <dependency> <groupId>org.codehaus.modello</groupId> <artifactId>modello-plugin-xml</artifactId> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>2.2</version> </dependency> </dependencies> </project>