Wiki

Clone wiki

snakeyaml-engine / Installation

Release

The current stable release of SnakeYAML Engine: 2.5

Download links:

Releases are available in the central repository.

Snapshots

The latest snapshot is only available in the Sonatype repository.

Snapshots have production quality. They are published only when they meet all the quality criteria for production (all the tests succeed)

Maven configuration:

Repository definition (in settings.xml).

<repositories>
  ...
  <repository>
    <id>Sonatype-public</id>
    <name>SnakeYAML repository</name>
    <url>http://oss.sonatype.org/content/groups/public/</url>
  </repository>
  ...
</repositories>

Dependency definition (in pom.xml)

<dependencies>
  ...
  <dependency>
    <groupId>org.snakeyaml</groupId>
    <artifactId>snakeyaml-engine</artifactId>
    <version>2.6-SNAPSHOT</version>
  </dependency>
  ...
</dependencies>

Updated