SnakeYAML.
YAML 1.1 parser and emitter for Java.
Here is the list of declaration for snakeyaml. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.9</version> </dependency>
If you think this Maven repository POM file listing for snakeyaml is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License Version 2.0
URL: LICENSE.txt.
The snakeyaml-1.9 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.7 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 272 |
Spring | spring 2.5.6 Spring Framework | 51 |
Template | velocity 1.6.2 Apache Velocity is a general purpose template engine. | 20 |
Java Library | joda-time 1.6 Date and time library to replace JDK date handling. | 200 |
The following plugins are used in the snakeyaml-1.9.jar
The following packages are defined in the snakeyaml-1.9.jar
org.yaml.snakeyaml org.yaml.snakeyaml.composer org.yaml.snakeyaml.constructor org.yaml.snakeyaml.emitter org.yaml.snakeyaml.error org.yaml.snakeyaml.events org.yaml.snakeyaml.extensions.compactnotation org.yaml.snakeyaml.external.biz.base64Coder org.yaml.snakeyaml.external.com.google.gdata.util.common.base org.yaml.snakeyaml.introspector org.yaml.snakeyaml.nodes org.yaml.snakeyaml.parser org.yaml.snakeyaml.reader org.yaml.snakeyaml.representer org.yaml.snakeyaml.resolver org.yaml.snakeyaml.scanner org.yaml.snakeyaml.serializer org.yaml.snakeyaml.tokens org.yaml.snakeyaml.util
Here is the content of the POM file.
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.9</version> <packaging>bundle</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <name>SnakeYAML</name> <description>YAML 1.1 parser and emitter for Java</description> <inceptionYear>2008</inceptionYear> <url>http://www.snakeyaml.org</url> <issueManagement> <system>Google Code</system> <url>http://code.google.com/p/snakeyaml/issues/list</url> </issueManagement> <mailingLists> <mailingList> <name>SnakeYAML developers and users List</name> <post>snakeyaml-core@googlegroups.com</post> </mailingList> </mailingLists> <scm> <connection>scm:hg:http://snakeyaml.googlecode.com/hg</connection> <developerConnection>scm:hg:https://snakeyaml.googlecode.com/hg</developerConnection> <url>http://code.google.com/p/snakeyaml/source/browse/</url> </scm> <licenses> <license> <name>Apache License Version 2.0</name> <url>LICENSE.txt</url> </license> </licenses> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> <version>2.5.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.6.2</version> <scope>test</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>1.6</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/StressTest.java</exclude> <exclude>**/ParallelTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> <configuration> <buildOutputDirectory>bin</buildOutputDirectory> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> <configuration> <check> <totalBranchRate>80</totalBranchRate> <totalLineRate>95</totalLineRate> </check> <formats> <format>html</format> <format>xml</format> </formats> <instrumentation> <excludes> <exclude>org/yaml/snakeyaml/external/**</exclude> </excludes> </instrumentation> </configuration> <executions> <execution> <goals> <goal>clean</goal> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.5</version> <executions> <execution> <id>validate-changes</id> <phase>pre-site</phase> <goals> <goal>changes-validate</goal> </goals> <configuration> <failOnError>true</failOnError> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <links> <link>http://java.sun.com/javase/6/docs/api/</link> </links> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> <configuration> <header>src/etc/header.txt</header> <quiet>false</quiet> <failIfMissing>true</failIfMissing> <aggregate>false</aggregate> <includes> <include>src/**/*.java</include> </includes> <excludes> <exclude>src/main/java/org/yaml/snakeyaml/external/**</exclude> </excludes> <useDefaultExcludes>true</useDefaultExcludes> <useDefaultMapping>true</useDefaultMapping> <strictCheck>true</strictCheck> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <phase>site</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.4</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package>org.yaml.snakeyaml.*</Export-Package> <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> </instructions> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.3</version> <configuration> <issueLinkTemplate>http://code.google.com/p/snakeyaml/issues/detail?id=%ISSUE%</issueLinkTemplate> </configuration> <reportSets> <reportSet> <reports> <report>changes-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.6</version> <configuration> <showSuccess>true</showSuccess> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> <configuration> <formats> <format>html</format> <format>xml</format> </formats> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <reportSets> <reportSet> <id>html</id> <configuration> <doctitle>API for ${project.name} ${project.version}</doctitle> <windowtitle>API for ${project.name} ${project.version}</windowtitle> <testDoctitle>Test API for ${project.name} ${project.version}</testDoctitle> <testWindowtitle>Test API for ${project.name} ${project.version}</testWindowtitle> </configuration> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots/</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> </profile> <profile> <id>fast</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/stress/**</exclude> <exclude>org/yaml/snakeyaml/recursive/generics/HumanGenericsTest.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>m3</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0-beta-3</version> </plugin> </plugins> </build> </profile> </profiles> </project>