maven install失败,提示找不到这个包,但是仓库中存在这个依赖

下面分两种情况分别给出解决方法

  1. 公共服务(common)、实体类、被依赖的类,打包插件按以下设置
    <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <phase>none</phase>
                        </execution>
                    </executions>
                    <configuration>
                        <classifier>execute</classifier>
                    </configuration>
                </plugin>
            </plugins>
    </build>
    

    注:当你的服务没有配置main方法,需要增加以下几行

    <executions>
        <execution>
            <phase>none</phase>
        </execution>
    </executions>
    

  2. 其他类或者微服务
    <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
    </build>
    

上一篇:ansible设置环境变量不生效的问题:ansible etcd -m shell -a "export ETCDCTL_API=3"


下一篇:[Linux]Ansible自动化运维② - 工具与模块