Reputation: 527
I am trying to migrate j2ee app deployed on Websphere 8.5 to Websphere liberty.
The code is using ant scripts (xml files) and references "j2ee.jar" lib file from websphere for building the code. Also references "plugins/com.ibm.ws.runtime.jar"
Which are the replacement jar files that can be used when building the code for liberty?
Upvotes: 0
Views: 437
Reputation: 18050
First of all I'd recommend you to scan your application with migration tools like Migration_Toolkit_for_Application_Binaries if you just have ear/war files, or WebSphere_Application_Server_Migration_Toolkit, which is a free plugin to Eclipse (if you are using Eclipse). They will show you if you are using any WebSphere APIs that are not available in Liberty.
If all is good and you just need jars with API classes, they are in wlp\dev\api\spec
folder in your WebSphere Liberty installation.
Also consider switching from ant to maven build, as there are dependency targets already for Liberty also.
Upvotes: 1