尝试查找依赖项目时,Maven安装失败

时间:2020-03-13 19:29:20

标签: maven-3

我有一个基于tos-base的订单核心项目。这是我的pom.xml。我尝试了所有可能发生在堆栈溢出中的东西,但是仍然出现错误。

我确实关注了

MVN清洁 mvn编译 mvn编译依赖项:tree mvn全新安装

此外,我尝试将MAVEN_OPT设置为Xms和Xmx。

此外,我再次创建了项目,但存在相同的错误。

ffmpeg -hide_banner -nostats -f alsa -acodec pcm_s16le -ac:0 2 -ar 480000 -i hw:CARD=Microphone -af astats=metadata=1:length=1:reset=1,ametadata=mode=print:key=lavfi.astats.Overall.Peak_level_dB:file=-:direct=1 -acodec flac test.flac 2>log.txt

这是我得到的错误:

<?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>
    <groupId>com.spectrum.sci</groupId>
    <artifactId>order-core</artifactId>
    <version>1.0</version>
    <name>order-core</name>
    <description>Order Core</description>

    <properties>
        <java.version>1.8</java.version>
        <cxf.version>3.2.0</cxf.version>
    </properties>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.2.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <dependencies>

        <dependency>
            <groupId>com.spectrum.tos</groupId>
            <artifactId>tos-base</artifactId>
            <version>1.0</version>
         </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</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>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.10</version>
        </dependency>

        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-frontend-jaxws</artifactId>
            <version>${cxf.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-ws-security</artifactId>
            <version>${cxf.version}</version>
         </dependency>
         <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-rs-service-description</artifactId>
            <version>${cxf.version}</version>
         </dependency>
         <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.3.2</version>
         </dependency>


    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
  </project>

1 个答案:

答案 0 :(得分:0)

尝试mvn -U clean install从远程存储库重新更新本地存储库,如果在本地存储库.m2 / com / spectrum / tos下正确安装了tos-base依赖项,则应检查1.0版本是否确实包含缺少的软件包,也许您应该升级此依赖项。