我有一个 gradle 项目,我想在其中使用 dagger 2.0。不知道如何配置IntelliJ和gradle生成文件让IntelliJ找到?
我的 build.gradle 文件如下所示:
apply plugin: 'java'
apply plugin: 'idea'
version = '1.0'
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'org.slf4j:slf4j-simple:1.7.12'
compile 'commons-configuration:commons-configuration:1.10'
compile 'commons-collections:commons-collections:3.2.1'
compile 'com.google.dagger:dagger:2.0'
compile 'com.google.dagger:dagger-compiler:2.0:jar-with-dependencies'
compile 'com.pi4j:pi4j-distribution:1.1-SNAPSHOT'
}
在我的应用程序的构建目录中,该文件DaggerXmlConfigurationComponent
存在,这是 Dagger 创建的组件。但我不能在 IntelliJ 中使用它,因为它找不到类。
这不是 Android 应用程序,而是 Raspberry Pi 的应用程序。