Maven导入依赖Jetbrains暴露

时间:2017-02-28 15:15:56

标签: maven kotlin maven-3 kotlin-exposed

在Jetbrains的Exposed(一个Kotlin SQL Framework)的github页面上,有一个指向页面的链接,您可以在该页面中获取该库的maven依赖项(https://bintray.com/kotlin/exposed/exposed/view#)。在MVNRepository(https://mvnrepository.com/artifact/org.jetbrains.exposed/exposed/0.7.6)上也可以找到相同的依赖。

我正在使用maven 3.3.9和Intellij 2016.3.4,但maven无法解决此依赖关系。我检查了〜/ .m2 /目录,似乎已下载(存在一个jar)。在查看存储库后,我看到没有pom.xml,他们使用Gradle。

是否仍然可以使用maven导入此依赖项?

1 个答案:

答案 0 :(得分:9)

它列在mvnrepository上,但工件本身位于Kotlin Exposed存储库中。您必须将指向Exposed存储库的链接添加到您的POM以供Maven查找。

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