Impose build order for a multi-project in Maven

前端 未结 2 1195
感情败类
感情败类 2020-12-31 07:29

I have a multi project in maven like this:

paren-project
  -> plugin-project
  -> testbed-project

The plugin project gen

2条回答
  •  旧巷少年郎
    2020-12-31 07:52

    Maven is a versatile system. No need to switch.

    You can add the dependency like this:

    
      group 
      artifact 
      true 
    
    

    This way, the dependency will not be included in the classpath.

    Read more about Optional Dependency

提交回复
热议问题