how to exclude all artifacts from a group in maven?

后端 未结 3 1298
不知归路
不知归路 2021-02-02 07:01

I am using maven 3 with the Enforcer plugin configured to force version convergence. I am using Spring 3.1.2 and Spring Security 3.1.3.

The problem is that Spring 3.1.3

3条回答
  •  情歌与酒
    2021-02-02 07:31

    This worked for me, excluding all artifacts for groupId org.springframework:

    
        
            org.springframework
            *
        
    
    

提交回复
热议问题