Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Auto Closed
-
2.9
-
None
-
None
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;
}