0
私はSquash SQLライブラリを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
に
を変更するには、
squash-core
をインポートしたいと思いますが理にかなっている、ありがとう – Looki