我在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的情况并非如此。我错过了什么?
答案 0 :(得分:2)
您定义了pom
而不是jar
。
像这样导入你的依赖:
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed</artifactId>
<version>0.7.6</version>
</dependency>