包在编译时不存在

时间:2018-05-14 11:26:37

标签: java

我的项目工作正常。我突然间开始出错了。 enter image description here

同时我可以看到包裹。 enter image description here

我认为这可能与“gradle”有关。我最近开始使用它并且不太了解这项技术。我的build.gradle

    group 'www.www'
version '1.0-SNAPSHOT'

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
    maven { url "https://jitpack.io" }
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
    compile 'com.github.badoualy:kotlogram:1.0.0-RC3'
    compile 'commons-io:commons-io:2.5'
}

非常感谢

1 个答案:

答案 0 :(得分:0)

我改变了导入,现在一切都很好。

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;