mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2024-11-24 02:08:48 +00:00
feat: 添加工作区更新方式(未测试)
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
46503e2c06
commit
e8571c7269
6
pom.xml
6
pom.xml
@ -4,7 +4,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>pw.yumc</groupId>
|
<groupId>pw.yumc</groupId>
|
||||||
<artifactId>YumCore</artifactId>
|
<artifactId>YumCore</artifactId>
|
||||||
<version>1.7</version>
|
<version>1.8</version>
|
||||||
<build>
|
<build>
|
||||||
<finalName>${project.artifactId}</finalName>
|
<finalName>${project.artifactId}</finalName>
|
||||||
<plugins>
|
<plugins>
|
||||||
@ -50,10 +50,6 @@
|
|||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
</properties>
|
</properties>
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
|
||||||
<id>spigot-repo</id>
|
|
||||||
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
<repository>
|
||||||
<id>yumc-repo</id>
|
<id>yumc-repo</id>
|
||||||
<url>http://repo.yumc.pw/content/groups/public/</url>
|
<url>http://repo.yumc.pw/content/groups/public/</url>
|
||||||
|
@ -70,8 +70,8 @@ public class CommandHelp {
|
|||||||
public CommandHelp(CommandInfo defCmd, Collection<? extends CommandInfo> list) {
|
public CommandHelp(CommandInfo defCmd, Collection<? extends CommandInfo> list) {
|
||||||
this.defCmd = defCmd;
|
this.defCmd = defCmd;
|
||||||
cmdlist = new LinkedList<>(list);
|
cmdlist = new LinkedList<>(list);
|
||||||
cmdlist.sort(new CommandNameComparator());
|
cmdlist.sort(Comparator.comparing(CommandInfo::getName));
|
||||||
cmdlist.sort(new CommandComparator());
|
cmdlist.sort(Comparator.comparing(CommandInfo::getSort));
|
||||||
HELPPAGECOUNT = (int) Math.ceil((double) cmdlist.size() / LINES_PER_PAGE);
|
HELPPAGECOUNT = (int) Math.ceil((double) cmdlist.size() / LINES_PER_PAGE);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -143,38 +143,6 @@ public class CommandHelp {
|
|||||||
return helpGenerator;
|
return helpGenerator;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 命令名称比较器
|
|
||||||
*
|
|
||||||
* @since 2016年7月23日 下午4:17:18
|
|
||||||
* @author 喵♂呜
|
|
||||||
*/
|
|
||||||
static class CommandNameComparator implements Comparator<CommandInfo> {
|
|
||||||
@Override
|
|
||||||
public int compare(CommandInfo o1, CommandInfo o2) {
|
|
||||||
return o1.getName().compareTo(o2.getName());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 命令排序比较器
|
|
||||||
*
|
|
||||||
* @since 2016年7月23日 下午4:17:18
|
|
||||||
* @author 喵♂呜
|
|
||||||
*/
|
|
||||||
static class CommandComparator implements Comparator<CommandInfo> {
|
|
||||||
@Override
|
|
||||||
public int compare(CommandInfo o1, CommandInfo o2) {
|
|
||||||
if (o1.getSort() > o2.getSort()) {
|
|
||||||
return 1;
|
|
||||||
} else if (o1.getSort() == o2.getSort()) {
|
|
||||||
return 0;
|
|
||||||
} else {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static class DefaultHelpGenerator implements HelpGenerator {
|
static class DefaultHelpGenerator implements HelpGenerator {
|
||||||
/**
|
/**
|
||||||
* 消息配置
|
* 消息配置
|
||||||
|
@ -58,7 +58,7 @@ public class CommandInfo {
|
|||||||
private boolean main;
|
private boolean main;
|
||||||
private Cmd command;
|
private Cmd command;
|
||||||
private Help help;
|
private Help help;
|
||||||
private int sort;
|
private Integer sort;
|
||||||
private CommandParse parse;
|
private CommandParse parse;
|
||||||
/**
|
/**
|
||||||
* 命令错误处理
|
* 命令错误处理
|
||||||
@ -179,7 +179,7 @@ public class CommandInfo {
|
|||||||
/**
|
/**
|
||||||
* @return 命令排序
|
* @return 命令排序
|
||||||
*/
|
*/
|
||||||
public int getSort() {
|
public Integer getSort() {
|
||||||
return sort;
|
return sort;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
109
src/main/java/pw/yumc/YumCore/text/Encrypt.java
Normal file
109
src/main/java/pw/yumc/YumCore/text/Encrypt.java
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
package pw.yumc.YumCore.text;
|
||||||
|
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
|
import java.net.URLDecoder;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加密工具类
|
||||||
|
*
|
||||||
|
* @author 喵♂呜
|
||||||
|
* @since 2017/4/22
|
||||||
|
*/
|
||||||
|
public class Encrypt {
|
||||||
|
private static String key;
|
||||||
|
static {
|
||||||
|
try {
|
||||||
|
key = URLDecoder.decode("%E5%96%B5%E2%99%82%E5%91%9C", "UTF-8");
|
||||||
|
} catch (UnsupportedEncodingException ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解密地址
|
||||||
|
*
|
||||||
|
* @param s
|
||||||
|
* 密串
|
||||||
|
* @return 解密后的地址
|
||||||
|
*/
|
||||||
|
public static String decode(String s) {
|
||||||
|
return decode(key, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加密地址
|
||||||
|
*
|
||||||
|
* @param s
|
||||||
|
* 密串
|
||||||
|
* @return 加密后的地址
|
||||||
|
*/
|
||||||
|
public static String encode(String s) {
|
||||||
|
return encode(key, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解密地址
|
||||||
|
*
|
||||||
|
* @param key
|
||||||
|
* 密钥
|
||||||
|
* @param s
|
||||||
|
* 密串
|
||||||
|
* @return 解密后的地址
|
||||||
|
*/
|
||||||
|
public static String decode(String key, String s) {
|
||||||
|
return process(key, s, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加密地址
|
||||||
|
*
|
||||||
|
* @param key
|
||||||
|
* 密钥
|
||||||
|
* @param s
|
||||||
|
* 密串
|
||||||
|
* @return 加密后的地址
|
||||||
|
*/
|
||||||
|
public static String encode(String key, String s) {
|
||||||
|
return process(key, s, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String process(String key, String s, boolean isEncode) {
|
||||||
|
StringBuilder str = new StringBuilder();
|
||||||
|
int ch;
|
||||||
|
for (int i = 0, j = 0; i < s.length(); i++, j++) {
|
||||||
|
if (j > key.length() - 1) {
|
||||||
|
j = j % key.length();
|
||||||
|
}
|
||||||
|
if (isEncode) {
|
||||||
|
ch = s.codePointAt(i) + key.codePointAt(j);
|
||||||
|
} else {
|
||||||
|
ch = s.codePointAt(i) + 65535 - key.codePointAt(j);
|
||||||
|
}
|
||||||
|
if (ch > 65535) {
|
||||||
|
ch = ch % 65535;// ch - 33 = (ch - 33) % 95 ;
|
||||||
|
}
|
||||||
|
str.append((char) ch);
|
||||||
|
}
|
||||||
|
return str.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void test() {
|
||||||
|
//String src = "http://ci.yumc.pw/job/%1$s/lastSuccessfulBuild/artifact/target/%1$s.jar";
|
||||||
|
//String dest = "¥l`c¢c«¦¡g¥©`¨dWbX¬h¡¤¨®§¬ªs©¢¥a¦¢¨h¤hZcU§g£¤";
|
||||||
|
//private static String direct = d("¥l`c¢c«¦¡g¥©`¨dWbX¬h¡¤¨®§¬ªs©¢¥a¦¢¨h¤hZcU§g£¤");
|
||||||
|
// private static String direct = "http://ci.yumc.pw/job/%1$s/lastSuccessfulBuild/artifact/target/%1$s.jar";
|
||||||
|
//private static String maven = d("¥l`c¢c«¦¡g¥©`¤¥®c«¥¡¤¨§«`¯§«¥¢§aVe]¬dWcX¬hZeU§f^gV¤b£§");
|
||||||
|
// private static String maven = "http://ci.yumc.pw/plugin/repository/everything/%1$s/%2$s/%3$s-%2$s.jar";
|
||||||
|
String src = "Authorization";
|
||||||
|
//String dest = "嘝⚶哐嘥♼咋嗤⚥哅嗣⚻哑嘢⚥咊嘥⚹咋嘟⚱咾嗤⚏哅嘖⚱咮嘚⚲哈嘖⚥品嗤⚹哏嗤⚶咽嘧⚩品嘩♱咩嘞⚣哋嘇⚧哌嘡⚣咿嘚♰哆嘖⚴";
|
||||||
|
System.out.println("\"" + encode(src) + "\"");
|
||||||
|
//System.out.println("\"" + decode(dest) + "\"");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void t() {
|
||||||
|
System.out.println(decode("499521", "b¨¬ £ "));
|
||||||
|
}
|
||||||
|
}
|
@ -4,6 +4,7 @@ import java.io.File;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.UnsupportedEncodingException;
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
|
import java.net.HttpURLConnection;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.net.URLClassLoader;
|
import java.net.URLClassLoader;
|
||||||
import java.net.URLDecoder;
|
import java.net.URLDecoder;
|
||||||
@ -30,6 +31,7 @@ import org.xml.sax.SAXException;
|
|||||||
|
|
||||||
import pw.yumc.YumCore.bukkit.Log;
|
import pw.yumc.YumCore.bukkit.Log;
|
||||||
import pw.yumc.YumCore.tellraw.Tellraw;
|
import pw.yumc.YumCore.tellraw.Tellraw;
|
||||||
|
import pw.yumc.YumCore.text.Encrypt;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 自动更新程序
|
* 自动更新程序
|
||||||
@ -61,21 +63,7 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
*/
|
*/
|
||||||
private static int interval = 25;
|
private static int interval = 25;
|
||||||
|
|
||||||
/**
|
private UpdateType updateType;
|
||||||
* 直链下载
|
|
||||||
*/
|
|
||||||
private static String direct = d("¥l`c¢c«¦¡g¥©`¨dWbX¬h¡¤¨®§¬ªs©¢¥a¦¢¨h¤hZcU§g£¤");
|
|
||||||
// private static String direct = "http://ci.yumc.pw/job/%1$s/lastSuccessfulBuild/artifact/target/%1$s.jar";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 构建下载
|
|
||||||
*/
|
|
||||||
private static String maven = d("¥l`c¢c«¦¡g¥©`¤¥®c«¥¡¤¨§«`¯§«¥¢§aVe]¬dWcX¬hZeU§f^gV¤b£§");
|
|
||||||
// private static String maven = "http://ci.yumc.pw/plugin/repository/everything/%1$s/%2$s/%3$s-%2$s.jar";
|
|
||||||
/**
|
|
||||||
* 是否为Maven
|
|
||||||
*/
|
|
||||||
private boolean isMaven;
|
|
||||||
/**
|
/**
|
||||||
* 更新文件
|
* 更新文件
|
||||||
*/
|
*/
|
||||||
@ -89,17 +77,17 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
* 自动更新
|
* 自动更新
|
||||||
*/
|
*/
|
||||||
public SubscribeTask() {
|
public SubscribeTask() {
|
||||||
this(false);
|
this(UpdateType.DIRECT);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 自动更新
|
* 自动更新
|
||||||
*
|
*
|
||||||
* @param isMaven
|
* @param type
|
||||||
* 是否为Maven
|
* 是否为Maven
|
||||||
*/
|
*/
|
||||||
public SubscribeTask(boolean isMaven) {
|
public SubscribeTask(UpdateType type) {
|
||||||
this(false, isMaven);
|
this(false, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -107,11 +95,11 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
*
|
*
|
||||||
* @param isSecret
|
* @param isSecret
|
||||||
* 是否为私有
|
* 是否为私有
|
||||||
* @param isMaven
|
* @param type
|
||||||
* 是否为Maven
|
* 更新类型
|
||||||
*/
|
*/
|
||||||
public SubscribeTask(boolean isSecret, boolean isMaven) {
|
public SubscribeTask(boolean isSecret, UpdateType type) {
|
||||||
this("master", isSecret, isMaven);
|
this("master", isSecret, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -121,13 +109,13 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
* 更新分支
|
* 更新分支
|
||||||
* @param isSecret
|
* @param isSecret
|
||||||
* 是否为私有
|
* 是否为私有
|
||||||
* @param isMaven
|
* @param type
|
||||||
* 是否为Maven
|
* 更新类型
|
||||||
*/
|
*/
|
||||||
public SubscribeTask(String branch, boolean isSecret, boolean isMaven) {
|
public SubscribeTask(String branch, boolean isSecret, UpdateType type) {
|
||||||
updateFile = new UpdateFile(instance);
|
updateFile = new UpdateFile(instance);
|
||||||
versionInfo = new VersionInfo(branch, isSecret);
|
versionInfo = new VersionInfo(branch, isSecret);
|
||||||
this.isMaven = isMaven;
|
updateType = type;
|
||||||
if (instance.isEnabled()) {
|
if (instance.isEnabled()) {
|
||||||
Bukkit.getPluginManager().registerEvents(this, instance);
|
Bukkit.getPluginManager().registerEvents(this, instance);
|
||||||
Bukkit.getScheduler().runTaskTimerAsynchronously(instance, this, 0, interval * 1200);
|
Bukkit.getScheduler().runTaskTimerAsynchronously(instance, this, 0, interval * 1200);
|
||||||
@ -142,30 +130,6 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 解密地址
|
|
||||||
*
|
|
||||||
* @param s
|
|
||||||
* 密串
|
|
||||||
* @return 解密后的地址
|
|
||||||
*/
|
|
||||||
public static String d(String s) {
|
|
||||||
String key = "499521";
|
|
||||||
StringBuilder str = new StringBuilder();
|
|
||||||
int ch;
|
|
||||||
for (int i = 0, j = 0; i < s.length(); i++, j++) {
|
|
||||||
if (j > key.length() - 1) {
|
|
||||||
j = j % key.length();
|
|
||||||
}
|
|
||||||
ch = (s.codePointAt(i) + 65535 - key.codePointAt(j));
|
|
||||||
if (ch > 65535) {
|
|
||||||
ch = ch % 65535;// ch - 33 = (ch - 33) % 95 ;
|
|
||||||
}
|
|
||||||
str.append((char) ch);
|
|
||||||
}
|
|
||||||
return str.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
update();
|
update();
|
||||||
@ -185,14 +149,8 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
Log.d(e);
|
Log.d(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
String download;
|
updateFile.update(updateType.getDownloadUrl(instance, result));
|
||||||
if (isMaven) {
|
Log.d(Encrypt.decode("嘊⚲哀嘖⚶哅嘣⚩咖嗕♧哏嗕⚸咁嘨♢咰嘤♢哒嗚⚵呼嗣♰咊"), instance.getName(), version.split("-")[0], result);
|
||||||
download = String.format(maven, instance.getClass().getPackage().getName().replaceAll("\\.", "/"), result, instance.getName());
|
|
||||||
} else {
|
|
||||||
download = String.format(direct, instance.getName());
|
|
||||||
}
|
|
||||||
updateFile.update(download);
|
|
||||||
Log.d(d("©¦¢ sUW¤T¯^¨R
£Y¯Z¥Qbgg"), instance.getName(), version.split("-")[0], result);
|
|
||||||
versionInfo.notify(Bukkit.getConsoleSender());
|
versionInfo.notify(Bukkit.getConsoleSender());
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@ -200,19 +158,56 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public enum UpdateType {
|
||||||
|
/**
|
||||||
|
* 下载直连
|
||||||
|
*/
|
||||||
|
DIRECT(Encrypt.decode("嘝⚶哐嘥♼咋嗤⚥哅嗣⚻哑嘢⚥咊嘥⚹咋嘟⚱咾嗤♧咍嗙⚵咋嘡⚣哏嘩⚕哑嘘⚥品嘨⚵哂嘪⚮咞嘪⚫哈嘙♱咽嘧⚶哅嘛⚣咿嘩♱哐嘖⚴哃嘚⚶咋嗚♳咀嘨♰哆嘖⚴")),
|
||||||
|
// "http://ci.yumc.pw/job/%1$s/lastSuccessfulBuild/artifact/target/%1$s.jar";
|
||||||
|
/**
|
||||||
|
* Maven下载
|
||||||
|
*/
|
||||||
|
MAVEN(Encrypt.decode("嘝⚶哐嘥♼咋嗤⚥哅嗣⚻哑嘢⚥咊嘥⚹咋嘥⚮哑嘜⚫哊嗤⚴品嘥⚱哏嘞⚶哋嘧⚻咋嘚⚸品嘧⚻哐嘝⚫哊嘜♱咁嗦♦哏嗤♧咎嗙⚵咋嗚♵咀嘨♯咁嗧♦哏嗣⚬咽嘧")),
|
||||||
|
// "http://ci.yumc.pw/plugin/repository/everything/%1$s/%2$s/%3$s-%2$s.jar";
|
||||||
|
/**
|
||||||
|
* 工作区下载
|
||||||
|
*/
|
||||||
|
WS(Encrypt.decode("嘝⚶哐嘥♼咋嗤⚥哅嗣⚻哑嘢⚥咊嘥⚹咋嘟⚱咾嗤♧咍嗙⚵咋嘬⚵咋嘩⚣哎嘜⚧哐嗤♧咍嗙⚵咊嘟⚣哎"));
|
||||||
|
// "http://ci.yumc.pw/job/%1$s/ws/target/%1$s.jar"
|
||||||
|
String url;
|
||||||
|
|
||||||
|
UpdateType(String url) {
|
||||||
|
this.url = url;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDownloadUrl(Plugin instance, String version) {
|
||||||
|
switch (this) {
|
||||||
|
case DIRECT:
|
||||||
|
case WS:
|
||||||
|
return String.format(url, instance.getName());
|
||||||
|
case MAVEN:
|
||||||
|
return String.format(url, instance.getClass().getPackage().getName().replaceAll("\\.", "/"), version, instance.getName());
|
||||||
|
}
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static class UpdateFile {
|
public static class UpdateFile {
|
||||||
public File parent;
|
public File parent;
|
||||||
public File target;
|
public File target;
|
||||||
public File temp;
|
public File temp;
|
||||||
|
|
||||||
|
private String k = Encrypt.decode("嗶⚷哐嘝⚱哎嘞⚼咽嘩⚫哋嘣");
|
||||||
|
private String v = Encrypt.decode("嗷⚣哏嘞⚥呼嘖⚰咮嘞⚑哆嘂⚻咪嘉⚏哕嘃⚓咙嗲");
|
||||||
|
|
||||||
public UpdateFile(Plugin plugin) {
|
public UpdateFile(Plugin plugin) {
|
||||||
String name = getPluginFile(plugin).getName();
|
String name = getPluginFile(plugin).getName();
|
||||||
parent = new File(d("¤¥®§h®¥¨h"));
|
parent = new File(Encrypt.decode("嘥⚮哑嘜⚫哊嘨♱哑嘥⚦咽嘩⚧咋"));
|
||||||
if (!parent.exists()) {
|
if (!parent.exists()) {
|
||||||
parent.mkdirs();
|
parent.mkdirs();
|
||||||
}
|
}
|
||||||
target = new File(parent, name);
|
target = new File(parent, name);
|
||||||
temp = new File(parent, name + d("b¨¬ £ "));
|
temp = new File(parent, name + Encrypt.decode("嗣⚦哋嘬⚰哈嘤⚣哀嘞⚰哃"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isUpdated() {
|
public boolean isUpdated() {
|
||||||
@ -242,7 +237,9 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void update(String url) throws IOException {
|
public void update(String url) throws IOException {
|
||||||
Files.copy(new URL(url).openStream(), temp.toPath());
|
HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
|
||||||
|
conn.setRequestProperty(k, v);
|
||||||
|
Files.copy(conn.getInputStream(), temp.toPath());
|
||||||
temp.renameTo(target);
|
temp.renameTo(target);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -251,12 +248,12 @@ public class SubscribeTask implements Runnable, Listener {
|
|||||||
/**
|
/**
|
||||||
* 直链POM
|
* 直链POM
|
||||||
*/
|
*/
|
||||||
private String url = d("¥¥kch¤¢ g£¥c®hjbcjmpekcc©hZ¥`¢d¤«h^¨a¡£¦g");
|
private String url = Encrypt.decode("嘝⚶哐嘥⚵咖嗤♱咿嘤⚦哅嘣⚩咊嘣⚧哐嗤⚷咋嗪♲咎嗫♶咓嗥♻咎嗤⚲咋嗚⚵咋嘜⚫哐嗤⚴咽嘬♱咁嘨♱哌嘤⚯咊嘭⚯哈");
|
||||||
// private static String url = "https://coding.net/u/502647092/p/%s/git/raw/%s/pom.xml";
|
// private static String url = "https://coding.net/u/502647092/p/%s/git/raw/%s/pom.xml";
|
||||||
/**
|
/**
|
||||||
* 构建POM
|
* 构建POM
|
||||||
*/
|
*/
|
||||||
private String pom = d("¥l`c¢c«¦¡g¥©`¨dW¤c¥¨¦©¥¤®¥w§ h¤¥¦`¤¨¦cª ");
|
private String pom = Encrypt.decode("嘝⚶哐嘥♼咋嗤⚥哅嗣⚻哑嘢⚥咊嘥⚹咋嘟⚱咾嗤♧哏嗤⚮咽嘨⚶咯嘪⚥咿嘚⚵哏嘛⚷哈嗷⚷哅嘡⚦咋嘖⚴哐嘞⚨咽嘘⚶咋嘥⚱哉嗣⚺哉嘡");
|
||||||
// private static String pom = "http://ci.yumc.pw/job/%s/lastSuccessfulBuild/artifact/pom.xml";
|
// private static String pom = "http://ci.yumc.pw/job/%s/lastSuccessfulBuild/artifact/pom.xml";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user