0
我正在創建一個項目,它使用Squash SQL Library for Kotlin。我已將依賴項添加到我的build.gradle
文件中。運行更新時,只需完成而不輸出任何錯誤。但是圖書館沒有在我的項目中輸入,並且根本沒有出現。Gradle不會導入bintray依賴項,但不會引發任何錯誤
的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
謝謝你,這是有道理的 – Looki