yamlbeans
yamlbeans copied to clipboard
Java object graphs, to and from YAML automatically
Bumps [junit](https://github.com/junit-team/junit4) from 4.8.2 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
Can yamlreader append the values duplicate keys to the map instead of overwriting them?
The field dependency for the bean property way is great to allow **making the bean transient (it isn't currently working, and I wonder if it is intended to)** but with...
This library can generate yml file for a java object given,I wanted to generate yml for the Java class object. This is to get the schema of the java class...
According to the [Primary Handle](http://yaml.org/spec/1.2/spec.html#id2782457) section in YAML specification 1.2, `!mypackage.MyClass` is by default the shorthand of `!`. Unfortunately, YamlBeans does not parse `!`, which can be produced by other...
In the YAML Version 1.2 specification (http://yaml.org/spec/1.2/spec.html#id2798057),for the Explicit Block Mapping,having the following specifications: If the “?” indicator is omitted, parsing needs to see past the implicit key, in the...
Simple test case to reproduce is available here: https://github.com/olegs/yamlbeans/blob/master/test/com/esotericsoftware/yamlbeans/GenericsTest.java Version 1.11 fails, while 1.08 works well in this case. As far as I can see the problem is located within...
This prevents using them in try-with-resources blocks in Java 7+, or with close helpers in previous versions of Java.
If we have: ``` public class Machines { public List machines; } public class Machine { public String machine_used; public List measurements; } ``` I have to say: ``` yamlConfig.setPropertyElementType(Machines.class,...