Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 2.9
-
Fix Version/s: None
-
Component/s: M2Eclipse support, WTP support
-
Labels:None
-
Number of attachments :
Description
Current code in workspaceconfiguration.java needs to be modified for adding support for websphere 8.0
Add if condition
if ( getDefaultDeployServerId().indexOf( "v8" ) >= 0 )
WorkspaceConfiguration.java
- @return the defined websphere server version and null if the target is no websphere.
*/
public String getWebsphereVersion()
{
if ( getDefaultDeployServerId() != null && getDefaultDeployServerId().startsWith( "was." ) )Unknown macro: { if ( getDefaultDeployServerId().indexOf( "v7" ) >= 0 ) { return "7.0"; } if ( getDefaultDeployServerId().indexOf( "v61" ) >= 0 ) { return "6.1"; } if ( getDefaultDeployServerId().indexOf( "v6" ) >= 0 ) { return "6.0"; } if ( getDefaultDeployServerId().indexOf( "v51" ) >= 0 ) { return "5.1"; } if ( getDefaultDeployServerId().indexOf( "v5" ) >= 0 ) { return "5.0"; } }return null;
}