Gradle can't find com.google.protobuf












1














I'm trying to compile a project with protobuf using gradle. However, I'm getting the following errors in the protobuf generated java file:



enter image description here



Here's the build.gradle file:



    // 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'
}


Any hint of what's missing?










share|improve this question


















  • 2




    I don't think protobuf-gradle-plugin should be part of your applications dependencies. Rather it's a gradle plugin that goes at the top gradle file, and you'll need to apply it
    – cricket_007
    Nov 20 '18 at 13:50
















1














I'm trying to compile a project with protobuf using gradle. However, I'm getting the following errors in the protobuf generated java file:



enter image description here



Here's the build.gradle file:



    // 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'
}


Any hint of what's missing?










share|improve this question


















  • 2




    I don't think protobuf-gradle-plugin should be part of your applications dependencies. Rather it's a gradle plugin that goes at the top gradle file, and you'll need to apply it
    – cricket_007
    Nov 20 '18 at 13:50














1












1








1







I'm trying to compile a project with protobuf using gradle. However, I'm getting the following errors in the protobuf generated java file:



enter image description here



Here's the build.gradle file:



    // 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'
}


Any hint of what's missing?










share|improve this question













I'm trying to compile a project with protobuf using gradle. However, I'm getting the following errors in the protobuf generated java file:



enter image description here



Here's the build.gradle file:



    // 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'
}


Any hint of what's missing?







java gradle protocol-buffers






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 13:48









João BorregoJoão Borrego

305




305








  • 2




    I don't think protobuf-gradle-plugin should be part of your applications dependencies. Rather it's a gradle plugin that goes at the top gradle file, and you'll need to apply it
    – cricket_007
    Nov 20 '18 at 13:50














  • 2




    I don't think protobuf-gradle-plugin should be part of your applications dependencies. Rather it's a gradle plugin that goes at the top gradle file, and you'll need to apply it
    – cricket_007
    Nov 20 '18 at 13:50








2




2




I don't think protobuf-gradle-plugin should be part of your applications dependencies. Rather it's a gradle plugin that goes at the top gradle file, and you'll need to apply it
– cricket_007
Nov 20 '18 at 13:50




I don't think protobuf-gradle-plugin should be part of your applications dependencies. Rather it's a gradle plugin that goes at the top gradle file, and you'll need to apply it
– cricket_007
Nov 20 '18 at 13:50












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394466%2fgradle-cant-find-com-google-protobuf%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394466%2fgradle-cant-find-com-google-protobuf%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]