Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

支持下载 SNAPSHOT 版本 #192

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
MrXiaoM committed Dec 24, 2023
commit 265561ba0661cd3897ff2ddd35179d290d466a09
2 changes: 1 addition & 1 deletion src/main/java/org/itxtech/mcl/component/Repository.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public String getLatestVersionFromMaven(String id, String channel) throws Except
}
}
if (map.size() == 0) {
loader.logger.error("Cannot find any version matches channel \"" + channel + "`\" for \"" + id + "\", using default version.");
loader.logger.error("Cannot find any version matches channel \"" + channel + "\" for \"" + id + "\", using default version.");
} else {
return map.lastEntry().getValue();
}
Expand Down