Is there anything wrong?no sha1 for the pom ,why?

Required by:
com.gridnt:subs-gui:1.0
com.gridnt:subs-gui:1.0 > com.gridnt:scdutility-core:2.0.1 > org.apache.poi:poi-ooxml-schemas:3.11

Could not resolve org.apache.xmlbeans:xmlbeans:2.6.0.
Failed to download SHA1 for resource ‘http://192.168.8.128:8081/nexus/content/groups/public/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom’.
For input string: “”
=============================================
As you can see , gradle want to get the sha1 of the pom , but I check the remote repos , there’s not sha1 for the pom, what can I do for that?
url is https://repo1.maven.org/maven2//org/apache/xmlbeans/xmlbeans/2.6.0/
=======================================================
I check it again. If I change the repo to mavenCentral() everything right, but if use the nexus(sonatype) app which is built myself ,then problem still. Have anyone seen that kind of issue???

Can you provide a small reproducable example of the problem you’re facing here? with just the error message you provided it is hard to diagnose.

cheers,
René

$ gradle clean build
:clean
:compileJava
FAILURE: Build failed with an exception.

BUILD FAILED

Total time: 3.53 secs

$ gradle clean build
:clean
:compileJava
警告: [options] 未与 -source 1.5 一起设置引导类路径
警告: [options] 源值1.5已过时, 将在未来所有发行版中删除
警告: [options] 目标值1.5已过时, 将在未来所有发行版中删除
警告: [options] 要隐藏有关已过时选项的警告, 请使用 -Xlint:-options。
4 个警告
:processResources
:classes
:jar
:assemble
:compileTestJava
警告: [options] 未与 -source 1.5 一起设置引导类路径
警告: [options] 源值1.5已过时, 将在未来所有发行版中删除
警告: [options] 目标值1.5已过时, 将在未来所有发行版中删除
警告: [options] 要隐藏有关已过时选项的警告, 请使用 -Xlint:-options。
4 个警告
:processTestResources
:testClasses
:test
:check
:build

BUILD SUCCESSFUL

Total time: 6.683 secs

Finally,I found the answer. I also had maven installed on my computer, so if I remove the involved jars under .m2, everything will be fine.

as mentioned. without a reproducable example or at least providing your build.gradle file it is hard to tell what’s going wrong here.