码迷,mamicode.com
首页 > 编程语言 > 详细

IDEA,与gradle引入jar包报错

时间:2018-01-28 11:31:07      阅读:9384      评论:0      收藏:0      [点我收藏+]

标签:错误   compile   tty   ctr   load   https   nload   test   get   

Warning:<i><b>root project netty_lecture: Unable to resolve additional project configuration.</b>
Details: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration :compileClasspath.
Caused by: org.gradle.internal.resolve.ArtifactResolveException: Could not download protobuf-java.jar (com.google.protobuf:protobuf-java:3.5.1)
Caused by: org.gradle.api.resources.ResourceException: Could not get resource https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.5.1/protobuf-java-3.5.1.jar.
Caused by: java.net.SocketTimeoutException: Read timed out</i>

引入Google protobuf的时候报上述错误

group com.jiangdashuai
version 1.0

apply plugin: java

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

dependencies {
//    testCompile group: ‘junit‘, name: ‘junit‘, version: ‘4.12‘
    compile(
             io.netty:netty-all:4.1.19.Final,
            com.google.protobuf:protobuf-java:3.5.1,
            com.google.protobuf:protobuf-lite:3.0.1
    )
}

将引入的插件

apply plugin: java

改为

apply plugin: java
apply plugin: idea

 

IDEA,与gradle引入jar包报错

标签:错误   compile   tty   ctr   load   https   nload   test   get   

原文地址:https://www.cnblogs.com/dashuai01/p/8367626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!