依赖性解决错误

时间:2018-03-09 11:49:31

标签: maven maven-2 maven-3 kite-sdk

我正在尝试使用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

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

2 个答案:

答案 0 :(得分:1)

ua_parser无法通过Maven central提供,而是通过wso2 repository提供。添加

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

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

答案 1 :(得分:0)

或者你可以使用 maven central 中的 com.github.ua-parser

<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