ms.yamlconfiguration.3.0.0.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yamlconfiguration Show documentation
Show all versions of yamlconfiguration Show documentation
Implementation of SnakeYAML to be easy to use with files.
/*
* This file is part of YamlConfiguration.
*
* Implementation of SnakeYAML to be easy to use with files.
*
* Copyright (C) 2010-2014 The Bukkit Project (https://bukkit.org/)
* Copyright (C) 2014-2023 SpigotMC Pty. Ltd. (https://www.spigotmc.org/)
* Copyright (C) 2020-2024 BSPF Systems, LLC (https://bspfsystems.org/)
*
* Many of the files in this project are sourced from the Bukkit API as
* part of The Bukkit Project (https://bukkit.org/), now maintained by
* SpigotMC Pty. Ltd. (https://www.spigotmc.org/). These files can be found
* at https://github.com/Bukkit/Bukkit/ and https://hub.spigotmc.org/stash/,
* respectively.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
/**
* Declares the YAML configuration module and handles dependencies and exports.
*/
module org.bspfsystems.yamlconfiguration {
// Requirements
requires org.jetbrains.annotations;
requires org.slf4j;
requires org.yaml.snakeyaml;
// Full Exports
exports org.bspfsystems.yamlconfiguration.configuration;
exports org.bspfsystems.yamlconfiguration.file;
exports org.bspfsystems.yamlconfiguration.serialization;
}