-m.mmm-marshall-snakeyaml.0.9.3.source-code.module-info Maven / Gradle / Ivy
/*
* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
/**
* Provides an implementation of {@code mmm-marshall} for YAML without any 3rd-party lib.
*
* @provides io.github.mmm.marshall.StructuredFormatProvider
*/
module io.github.mmm.marshall.snakeyaml {
requires transitive io.github.mmm.marshall;
requires transitive org.yaml.snakeyaml;
exports io.github.mmm.marshall.snakeyaml;
provides io.github.mmm.marshall.StructuredFormatProvider with //
io.github.mmm.marshall.snakeyaml.SnakeYamlFormatProvider;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy