我正在创建一个使用Squash SQL库进行Kotlin的项目。我已将依赖项添加到build.gradle
文件中。运行更新时,它只是完成而不输出任何错误。但是图书馆没有在我的项目中导入,并且根本没有出现。
IntelliJ中显示的依赖项:
我的build.gradle
文件:
//Kotlin Stuff, nothing changed here
repositories {
mavenCentral()
maven {
url "http://dl.bintray.com/kotlin/squash"
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'org.jetbrains.squash:squash:0.2.2'
}
//Kotlin Stuff
答案 0 :(得分:1)
你添加的依赖只是父pom,它在repo中没有任何jar。以下是squash
项目(http://dl.bintray.com/kotlin/squash/org/jetbrains/squash/)的列表:
squash-core
squash-graph
squash-h2
squash-jdbc
squash-postgres
squash-sqlite
我想你要导入squash-core
所以改变
compile 'org.jetbrains.squash:squash:0.2.2'
到
compile 'org.jetbrains.squash:squash-core:0.2.2'