How to interpret the code structure of product-am

Viewed 28

I got wso2am4.0.0 source code from github, which composed of some modules, hut i don't know how to interpret the structure and how to run or debug in ide, can anyone guide me how to do that?

1 Answers

WSO2AM consists of several components and those components are bundled together. This bundling logic is implemented at product apim. All the major components of APIM are implemented at a separate repo and you can find the java code for its backend functionalities and the UI components there. Each of these components has its own versions and the parallel carbon-apimgt version for APIM 4.0.0 is v9.0.174. There are several other component repos and you can find those from the artifact ID in each imported dependency find here.

Related