mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ACE-3092
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@87860 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -231,7 +231,7 @@ public class ModuleManagementTool implements LogOutput
|
||||
throw new ModuleManagementToolException("No module.properties file has been found in the installing .amp file '" + ampFileLocation + "'");
|
||||
}
|
||||
String installingId = installingModuleDetails.getId();
|
||||
ModuleVersionNumber installingVersion = installingModuleDetails.getVersion();
|
||||
ModuleVersionNumber installingVersion = installingModuleDetails.getModuleVersionNumber();
|
||||
|
||||
//A series of checks
|
||||
warHelper.checkCompatibleVersion(warFile, installingModuleDetails);
|
||||
@@ -303,7 +303,7 @@ public class ModuleManagementTool implements LogOutput
|
||||
if (installedModuleDetails != null)
|
||||
{
|
||||
String installedId = installedModuleDetails.getId();
|
||||
ModuleVersionNumber installedVersion = installedModuleDetails.getVersion();
|
||||
ModuleVersionNumber installedVersion = installedModuleDetails.getModuleVersionNumber();
|
||||
|
||||
int compareValue = installedVersion.compareTo(installingVersion);
|
||||
if (compareValue > 0)
|
||||
@@ -711,7 +711,7 @@ public class ModuleManagementTool implements LogOutput
|
||||
}
|
||||
outputVerboseMessage("Module '" + moduleDetails.getId() + "' installed in '" + warLocation + "'");
|
||||
outputVerboseMessage(" Title: " + moduleDetails.getTitle(), true);
|
||||
outputVerboseMessage(" Version: " + moduleDetails.getVersion(), true);
|
||||
outputVerboseMessage(" Version: " + moduleDetails.getModuleVersionNumber(), true);
|
||||
outputVerboseMessage(" Install Date: " + moduleDetails.getInstallDate(), true);
|
||||
outputVerboseMessage(" Description: " + moduleDetails.getDescription(), true);
|
||||
}
|
||||
|
Reference in New Issue
Block a user