jacoco-maven-plugin:0.7.9 依赖问题

问题描述

我试图在我的 pom.xml 文件添加 jacoco maven 插件,但在构建项目时出现以下错误

 Execution default-prepare-agent of goal org.jacoco:jacoco-maven-plugin:0.7.9:prepare-agent Failed: Plugin org.jacoco:jacoco-maven-plugin:0.7.9 or one of its dependencies Could not be resolved: The following artifacts Could not be resolved: commons-codec:commons-codec:jar:1.2,commons-collections:commons-collections:jar:3.2: Could not transfer artifact commons-codec:commons-codec:jar:1.2 from/to central (https://artifactory.corp.chartercom.com/plugins-release): 
     Access denied to https://artifactory.corp.chartercom.com/plugins-release/commons-codec/commons-codec/1.2/commons-codec-1.2.jar. Error code 403,Forbidden 

我尝试了以下几点:

  1. 我尝试将 0.7.9 的 jacoco 版本升级到 0.8.4、0.8.5 和 0.8.6,并尝试排除 commons-codec:commons-codec:jar:1.2commons-collections:commons-collections:jar:3.2 jar 形式的 jacoco 插件,但它不起作用。

  2. 我还尝试在我的 pom.xml 中添加 commons-codec 和 commons-collections jar 的升级依赖项,但它不起作用。

这是我的 pom.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<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.0</modelVersion>
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.1.RELEASE</version>
    <relativePath /> <!-- lookup parent from repository -->
</parent>

<groupId>com.charter.ews.location</groupId>
<artifactId>search-address-api</artifactId>
<version>0.0.9-SNAPSHOT</version>
<name>search-address-api</name>

<properties>
    <java.version>1.8</java.version>
    <charter.logging>1.2</charter.logging>
    <charter.error>1.1</charter.error>
    <charter.transactionalizer>1.2</charter.transactionalizer>
    <swagger.version>2.7.0</swagger.version>
    <charter.algorithm.lib>1.0.0.RELEASE</charter.algorithm.lib>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-validation</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>runtime</scope>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger2</artifactId>
        <version>2.7.0</version>
    </dependency>
    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger-ui</artifactId>
        <version>2.7.0</version>
    </dependency>
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-collections4</artifactId>
        <version>4.4</version>
    </dependency>
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
    </dependency>

    <!-- Charter dependencies -->
    <dependency>
        <groupId>com.charter.web.services</groupId>
        <artifactId>transactionalizer</artifactId>
        <version>${charter.transactionalizer}</version>
    </dependency>
    <dependency>
        <groupId>com.charter.logging</groupId>
        <artifactId>charter-logging</artifactId>
        <version>${charter.logging}</version>
    </dependency>
    <dependency>
        <groupId>com.charter.error</groupId>
        <artifactId>charter-error</artifactId>
        <version>${charter.error}</version>
    </dependency>

    <!-- junit -->

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>0.7.9</version>
            <executions>
                <execution>
                    <id>default-prepare-agent</id>
                    <goals>
                        <goal>prepare-agent</goal>
                    </goals>
                </execution>
                <execution>
                    <id>default-report</id>
                    <goals>
                        <goal>report</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <excludes>
                    <exclude>**/com/charter/address/model/*</exclude>
                    <exclude>**/com/charter/address/config/*</exclude>
                    <exclude>**/com/charter/address/exception/*</exclude>
                    <exclude>**/com/charter/address/constants/*</exclude>
                    <exclude>**/com/charter/address/Application.class</exclude>
                </excludes>

            </configuration>
        </plugin>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>versions-maven-plugin</artifactId>
            <version>2.5</version>
        </plugin>
        <plugin> <!-- copy configuration files to a location accessible by Helm. Use mvn resources:copy-resources 
                for execution -->
            <artifactId>maven-resources-plugin</artifactId>
            <version>3.1.0</version>
            <executions>
                <execution>
                    <id>copy-resources</id>
                    <!-- here the phase you need -->
                    <phase>validate</phase>
                    <goals>
                        <goal>copy-resources</goal>
                    </goals>
                    <configuration>
                        <outputDirectory>chart/files</outputDirectory>
                        <resources>
                            <resource>
                                <directory>config</directory>
                                <includes>
                                    <include>**/*.properties</include>
                                    <include>**/*.yaml</include>
                                    <include>**/logback*.xml</include>
                                </includes>
                                <filtering>false</filtering>
                            </resource>
                        </resources>
                    </configuration>
                </execution>
            </executions>
        </plugin>
        <plugin> <!-- Helper to 1) change SNAPSHOT to RELEASE. 2) Frame Docker image name -->
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
            <version>3.0.0</version>
            <configuration>
                <name>newVersion</name>
                <value>${project.version}</value>
                <regex>-SNAPSHOT|-build\.(.*)|-build</regex>
                <replacement>-build.${BUILD_NUMBER}</replacement>
                <failIfNoMatch>false</failIfNoMatch>
                <source />
                <fileSet />
            </configuration>
        </plugin>
    </plugins>
</build>

这个错误是否与setting.xml文件有关?您的建议将受到高度评价。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)