mirror of
https://e.coding.net/circlecloud/Yum.git
synced 2024-11-22 14:28:46 +00:00
修复repo显示null的问题...
Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
parent
31cb47578f
commit
e1541c27b8
@ -17,6 +17,7 @@ import com.google.gson.JsonSyntaxException;
|
||||
|
||||
import cn.citycraft.PluginHelper.jsonresult.JsonResult;
|
||||
import cn.citycraft.PluginHelper.utils.IOUtil;
|
||||
import cn.citycraft.PluginHelper.utils.StringUtil;
|
||||
import cn.citycraft.Yum.manager.RepoSerialization.PackageInfo;
|
||||
import cn.citycraft.Yum.manager.RepoSerialization.Plugin;
|
||||
import cn.citycraft.Yum.manager.RepoSerialization.Repositories;
|
||||
@ -96,9 +97,9 @@ public class RepositoryManager {
|
||||
|
||||
public List<String> getAllPluginsInfo() {
|
||||
final List<String> li = new ArrayList<String>();
|
||||
for (final Entry<String, PluginInfo> plugin : repocache.getPlugins().entrySet()) {
|
||||
final Plugin pl = plugin.getValue().plugin;
|
||||
li.add(String.format("§d%s §a%s(%s) §6- §e%s", plugin.getValue().repo, pl.name, pl.version, pl.description));
|
||||
for (final Entry<String, PluginInfo> pi : repocache.getPlugins().entrySet()) {
|
||||
final Plugin plugin = pi.getValue().plugin;
|
||||
li.add(String.format("§d%s §a%s(%s) §6- §e%s", pi.getValue().repo, pi.getValue().name, plugin.version, plugin.description));
|
||||
}
|
||||
return li;
|
||||
}
|
||||
@ -161,9 +162,9 @@ public class RepositoryManager {
|
||||
public void updatePackage(final CommandSender sender, final PackageInfo pkg) {
|
||||
for (final Plugin plugin : pkg.plugins) {
|
||||
final PluginInfo pi = new PluginInfo();
|
||||
pi.name = plugin.name == null ? plugin.artifactId : plugin.name;
|
||||
pi.branch = plugin.branch == null ? "master" : plugin.branch;
|
||||
pi.pom = plugin.pom == null ? pkg.pom : plugin.pom;
|
||||
pi.name = StringUtil.getNotNull(plugin.name, plugin.artifactId);
|
||||
pi.branch = StringUtil.getNotNull(plugin.branch, "master");
|
||||
pi.pom = StringUtil.getNotNull(plugin.pom, pkg.pom);
|
||||
pi.plugin = plugin;
|
||||
pi.url = pkg.url;
|
||||
pi.repo = pkg.name;
|
||||
|
@ -34,7 +34,7 @@ public class YumManager {
|
||||
public static boolean install(final CommandSender sender, final String pluginname, final String version) {
|
||||
final PluginInfo pi = repo.getPlugin(pluginname);
|
||||
if (pi != null) {
|
||||
if (download.run(sender, pi.getMavenUrl(sender, version), new File("plugins", pi.plugin.name + ".jar"))) {
|
||||
if (download.run(sender, pi.getMavenUrl(sender, version), new File("plugins", pi.name + ".jar"))) {
|
||||
return plugman.load(sender, pluginname);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user