9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2025-12-29 20:09:14 +00:00

update README

This commit is contained in:
XiaoMoMi
2024-08-26 01:11:35 +08:00
parent 63f445a7b3
commit ec6dcc85bb
27 changed files with 111 additions and 113 deletions

View File

@@ -26,6 +26,7 @@
package net.momirealms.customfishing.common.dependency;
import net.momirealms.customfishing.common.dependency.relocation.Relocation;
import net.momirealms.customfishing.common.plugin.CustomFishingProperties;
import org.jetbrains.annotations.Nullable;
import java.security.MessageDigest;

View File

@@ -161,7 +161,7 @@ public class DependencyManagerImpl implements DependencyManager {
int i = 0;
while (i < repository.size()) {
try {
plugin.getPluginLogger().info("Downloading dependency(" + fileName + ") from " + repository.get(i).getUrl() + dependency.getMavenRepoPath());
plugin.getPluginLogger().info("Downloading dependency(" + fileName + ")[" + repository.get(i).getUrl() + dependency.getMavenRepoPath() + "]");
repository.get(i).download(dependency, file);
plugin.getPluginLogger().info("Successfully downloaded " + fileName);
return file;

View File

@@ -15,7 +15,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.momirealms.customfishing.common.dependency;
package net.momirealms.customfishing.common.plugin;
import java.io.IOException;
import java.io.InputStream;