Gradle не может найти com.google.protobuf - PullRequest
0 голосов
/ 20 ноября 2018

Я пытаюсь скомпилировать проект с protobuf, используя gradle.Однако в Java-файле, созданном с помощью protobuf, появляются следующие ошибки:

enter image description here

Вот файл build.gradle:

    // Apply the java-library plugin to add support for Java Library
apply plugin: 'java-library'


// In this section you declare where to find the dependencies of your project
repositories {
    // Use jcenter for resolving your dependencies.
    // You can declare any Maven/Ivy/file repository here.
    jcenter()
}

dependencies {

    // This dependency is used internally, and not exposed to consumers on their own compile classpath.
    implementation 'com.google.protobuf:protobuf-java:3.5.1'
    implementation 'com.google.protobuf:protobuf-gradle-plugin:0.8.7'
    // Use JUnit test framework
    testImplementation 'junit:junit:4.12'
}

Любой намек на то, чего не хватает?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...