Bintray 依赖项不会在 IntelliJ 中下载

Bintray dependencies won't download in IntelliJ

我在 IntelliJ 2017.1 中创建了一个简单的 kotlin 项目

我想为初学者添加对这个库的依赖:https://github.com/JetBrains/Exposed

我添加了 maven 框架,并编辑了 pom.xml,如下所示。为了简单起见,我删除了 kotlin 配置条目。

<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>

    <repositories>

        <repository>
            <id>exposed</id>
            <name>exposed</name>
            <url>https://dl.bintray.com/kotlin/exposed</url>
        </repository>

    </repositories>

    <dependencies>

        <dependency>
            <groupId>org.jetbrains.exposed</groupId>
            <artifactId>exposed</artifactId>
            <version>0.7.6</version>
            <type>pom</type>
        </dependency>

        <dependency>
            <groupId>org.jetbrains.kotlin</groupId>
            <artifactId>kotlin-stdlib-jre8</artifactId>
            <version>${kotlin.version}</version>
        </dependency>

    </dependencies>

</project>

Kotlin 库已下载,我在外部库中看到它们。不幸的是,Exposed 并非如此。我错过了什么?

您定义的是 pom 而不是 jar

像这样导入你的依赖:

<dependency>
  <groupId>org.jetbrains.exposed</groupId>
  <artifactId>exposed</artifactId>
  <version>0.7.6</version>
</dependency>