Can anyone explain how to get the hybrids project created in Intellij Idea?

I follow the paths in the wiki and I can get the Hybris project created in Eclipse just fine. But since I'm new to Intellij Idea and I'm still trying to figure out the idea of ​​"projects" instead of "workspaces", I'm having a hard time translating the Eclipse installation steps into intellij idea steps. I have Hybris - how can I "open" it in Intellij Idea? (Apologize in advance for the nob question, but appreciate any input someone can give me).

+3


source to share


3 answers


Just install "Hybris Integration" , it will do everything automatically. You will be able to import Hybris projects as maven or gradle based projects. This plugin provides Hybris integration into Intellij IDEA and other IDEs based on it.



You can install it to your IDE directly from the repository by clicking the Browse Repositories button in the Options / Plugins dialog box.

+14


source


First, your extensions need to be crisp. Usually the main dependencies in each project are: your storefront extension

depends on your facade extension

depends your core extension

on platform

and voucher

and mediaconversion

(and probably many others). Finally, it platform

depends config

.

Start importing these extensions from top to bottom. Start with config

and then platform

. After that, import the first extension that only depends on platform

, etc. Select Eclipse

when prompted Import project from external model

(from eclipse plugin in Intellij). After every import, the build

whole project in Intellij prevents compilation and jar dependency errors.



I am working with 29 Hybris extensions and 6 custom extensions in one project quite happily.

+5


source


Hybris integration plugin provides impex highlighting and also successfully enhances platform search capabilities. If your custom hybrid architecture is related to hybrid standards (for example, use a custom folder inside the bin directory, etc.), you can easily import your project according to the xmls extension files. If I'm not suggesting that you import the project as an eclipse project then do "->" make project, then try adding the required modules that give the compilation error. Intelligence and hybrid integration works very well.

+1


source







All Articles