Jira插件安装

以下操作需要反编译

1、反编译的jar包

1)E:\JIRA安装路径\atlassian-jira\WEB-INF\atlassian-bundled-plugins\atlassian-universal-plugin-manager-plugin-4.0.1.jar

2)commons-codec-1.12.jar,这个需要自行下载

2、破解文件路径

1)com.atlassian.extras.decoder.v2.Version2LicenseDecoder.class

2)com.atlassian.license.LicenseManager.class

3、修改方式

1)新建com.atlassian.extras.decoder.v2.Version2LicenseDecoder.java

private Properties loadLicenseConfiguration(Reader text)
{
Properties props = new Properties();
try {
(new DefaultPropertiesPersister()).load(props, text);
if (props.containsKey("Description")) {
String desc = props.getProperty("Description");
props.put("Description",
desc.replace("Evaluation", "Commercial"));

if (desc.contains("Confluence")) {
props.put("conf.LicenseTypeName", "COMMERCIAL");
} else if (desc.contains("JIRA")) {
props.put("jira.LicenseTypeName", "COMMERCIAL");
} else if (desc.contains("FishEye")) {
props.put("fisheye.LicenseTypeName", "COMMERCIAL");
} else if (desc.contains("Bitbucket")) {
props.put("stash.LicenseTypeName", "COMMERCIAL");
}

props.put("Evaluation", "false");
props.put("MaintenanceExpiryDate", "2033-06-06");
props.put("LicenseExpiryDate", "2033-06-06");
}
return props;
} catch (IOException var3) {
throw new LicenseException("Could NOT load properties from reader", var3);
}
}

2) 新建com.atlassian.LicenseManager.java

public boolean hasValidLicense(String licenseKey) {

  return true;

 }

4、替换原jar包中的文件

5、关闭服务并重启,即可破解完成

posted @ 2019-05-06 11:04  煦色韶光  阅读(3326)  评论(1编辑  收藏  举报