我的 Java 项目在 gradle 中遇到问题。我在 gradle 中使用了多个依赖项,其中之一是 jzy3d.api。我已将其包含在 build.gradle 文件中并将 url 添加到存储库,但它找不到它。我已经添加了它的存储库,因为它位于此处:http ://maven.jzy3d.org/releases/org/jzy3d/jzy3d-api/1.0.2/ 但错误消息似乎没有搜索那里。有人可以告诉我为什么吗?这是我的 build.gradle 和错误消息:
plugins {
id 'java'
id 'idea' // optional, for IntelliJ IDEA project
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
maven {
url "https://maven.jzy3d.org/releases"
}
mavenCentral()
}
dependencies {
testCompile 'org.junit.jupiter:junit-jupiter:5.6.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
compile group: 'org.jzy3d', name: 'jzy3d-api', version: '1.0.2'
compile group: 'org.jfree', name: 'jfreechart', version: '1.5.0'
}
Run Code Online (Sandbox Code Playgroud)
Execution failed for task …Run Code Online (Sandbox Code Playgroud) 我想知道是否有人知道如何使用jzy3d 3D绘图库为(x,y,z)轴指定标签.
我试过使用这样的作业:
chart.getView().setAxeLabels("","","");
Run Code Online (Sandbox Code Playgroud)
从这里:https://groups.google.com/forum/#!topic/jzy3d/6nkwF8C01Do
但它不起作用.
任何想法如何做到这一点默认情况下他们显示未分配.