maven巧妙排除父pom的依赖

项目中引入架构师搭好的父pom工程



<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	
	<modelVersion>4.0.0modelVersion>
	
	<parent>
		<groupId>com.xxx.xxxgroupId>
		<artifactId>parentartifactId>
		<version>0.0.1-RELEASEversion>
	parent>
	
	<artifactId>xxx-xxx-xxxartifactId>
	<version>0.0.1-RELEASEversion>
	<packaging>pompackaging>

发现一个问题 子模块如何把父pom依赖的jar包排除掉呢
思前想后
直接在父依赖pom直接排除呢


<dependency>
    <groupId>com.zytgroupId>
    <artifactId>parentartifactId>
    <version>1.0-SNAPSHOTversion>
    <exclusions>
        <exclusion>
            <groupId>..groupId>
            <artifactId>jedisartifactId>
        exclusion>
     exclusions>
dependency>

尝试未果 不能这样排除
于是想到了这样一个方法, 直接依赖覆盖搞定
子类重写,定义scope为test,打包则不会出现,亲测可用


    <dependencies>
        <dependency>
            <groupId>xxx.yyy.zzzgroupId>
            <artifactId>abcdartifactId>
            <scope>testscope> 
        dependency>
    dependencies>

你可能感兴趣的:(maven巧妙排除父pom的依赖)