algorithm to resolve version scope based dependency

后端 未结 2 2018
醉酒成梦
醉酒成梦 2020-12-29 10:50

I have a problem on a dependency algorithm, the dependency is similar to maven dependency, except it\'s strict version scope based.

For example:

comp         


        
2条回答
  •  醉酒成梦
    2020-12-29 11:20

    That is a variant of the satisfiability problem. osgi has to deal with that too. So you could have a look in the osgi spec and/or implementations and see how they are solving it.

提交回复
热议问题