eu.hexagonmc.spigot.gradle.meta.MetadataBungeeExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spigot-gradle Show documentation
Show all versions of spigot-gradle Show documentation
Gradle plugin for Spigot and BungeeCord
The newest version!
/**
*
* Copyright (C) 2017 HexagonMc
* Copyright (C) 2017 Zartec
*
* This file is part of Spigot-Gradle.
*
* Spigot-Gradle 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.
*
* Spigot-Gradle 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 Spigot-Gradle.
* If not, see .
*/
package eu.hexagonmc.spigot.gradle.meta;
import eu.hexagonmc.spigot.annotation.meta.PluginMetadata;
import eu.hexagonmc.spigot.gradle.SpigotGradle;
import org.gradle.api.Project;
public class MetadataBungeeExtension extends MetadataExtension {
public static final String EXTENSION_NAME = "bungee";
private Object _author;
/**
* Creates a new extension for the given project.
*
* @param project The project
*/
public MetadataBungeeExtension(Project project) {
super(project);
}
/**
* Sets the author for this plugin.
*
* @param author The author to set
*/
public void author(Object author) {
_author = author;
}
/**
* Gets the author set for this plugin.
*
* @return The author set
*/
public String author() {
return SpigotGradle.resolveString(_author);
}
/**
* {@inheritDoc}.
*/
@Override
public void accept(PluginMetadata meta) {
super.accept(meta);
String author = author();
if (author != null) {
meta.getAuthors().clear();
meta.addAuthor(author());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy