依赖解析错误

Dependency Resolution error

我正在尝试使用 Kites SDK 将 JSON 文件转换为 Parquet 格式。

我有以下 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.project</groupId>
    <artifactId>JSONToParquet</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <dependencies>
        <dependency>
            <groupId>org.kitesdk</groupId>
            <artifactId>kite-data-core</artifactId>
            <version>1.1.0</version>
        </dependency>

        <dependency>
            <groupId>org.kitesdk</groupId>
            <artifactId>kite-morphlines-all</artifactId>
            <version>1.0.0</version> <!-- or whatever the latest version is -->
            <type>pom</type>
        </dependency>

        <!-- https://mvnrepository.com/artifact/ua_parser/ua-parser -->
        <dependency>
            <groupId>ua_parser</groupId>
            <artifactId>ua-parser</artifactId>
            <version>1.3.0</version>
            <type>pom</type>
        </dependency>

    </dependencies>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>


</project>

但是当我尝试构建我的项目时。我收到以下错误:

The POM for ua_parser:ua-parser:jar:1.3.0 is missing, no dependency information available
The POM for ua_parser:ua-parser:pom:1.3.0 is missing, no dependency information available

我无法理解此问题的根本原因。

ua_parser 无法通过 Maven central, but via the wso2 repository 使用。通过添加

<repositories>
  <repository>
    <id>wso2</id>
    <url>http://dist.wso2.org/maven2/</url>
  </repository>
</repositories>

对于您的 pom,您可以访问 wso2 存储库中的工件。

或者你可以使用 com.github.ua-parser,它存在于 maven central

<dependency>
    <groupId>com.github.ua-parser</groupId>
    <artifactId>uap-java</artifactId>
    <version>1.5.2</version>
</dependency>

来自 https://mvnrepository.com/artifact/com.github.ua-parser/uap-java