我在我的项目one上实施了Gradle。我将Netbeans 8.02与gradle插件一起使用。
结构应该是这样,来源位于jgli/src/main/java/
下,jgli/src/main/resources/
下的资源
Main类是jgli/src/main/java/test/Main.java
如果我通过ide运行它,它在windows上运行,在linux上运行crashes。这就是我现在试图通过控制台运行它的原因:
java -jar jgli.jar
但我一直在接受:
错误无法找到或加载主要课程' test.Main'
这是我的build.gradle
apply plugin: 'java'
sourceCompatibility = '1.8'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
// NetBeans will automatically add "run" and "debug" tasks relying on the
// "mainClass" property. You may however define the property prior executing
// tasks by passing a "-PmainClass=<QUALIFIED_CLASS_NAME>" argument.
//
// Note however, that you may define your own "run" and "debug" task if you
// prefer. In this case NetBeans will not add these tasks but you may rely on
// your own implementation.
if (!hasProperty('mainClass')) {
ext.mainClass = ''
}
repositories {
mavenCentral()
// You may define additional repositories, or even remove "mavenCentral()".
// Read more about repositories here:
// http://www.gradle.org/docs/current/userguide/dependency_management.html#sec:repositories
}
dependencies {
// TODO: Add dependencies here ...
// You can read more about how to add dependency here:
// http://www.gradle.org/docs/current/userguide/dependency_management.html#sec:how_to_declare_your_dependencies
testCompile group: 'junit', name: 'junit', version: '4.10'
compile 'org.jogamp.jogl:jogl-all-main:2.3.2'
compile 'org.jogamp.jogl:nativewindow-main:2.3.2'
compile 'org.jogamp.jogl:newt-main:2.3.2'
compile 'org.jogamp.gluegen:gluegen-rt-main:2.3.2'
}
jar {
manifest {
attributes 'Main-Class': 'test.Main'
}
}
我刚修改了dependecies
部分并添加了清单部分。
我尝试将'test.Main'
添加到ext.mainClass,但它没有改变任何内容..
Here你可以下载jar。
这是我的MANIFEST.MF
:
Manifest-Version: 1.0
Main-Class: test.Main
Main.class正确位于jar内。
Main.java具有包声明package test;
也试过
apply plugin: 'application'
mainClassName = 'test.Main'
没有成功..
我错过了什么?
答案 0 :(得分:3)
我刚刚发现你的git repository和你的Main class的来源,似乎它实现了一些接口,它在你的依赖项中提供:
import com.jogamp.newt.event.KeyListener;
import com.jogamp.opengl.util.GLEventListener;
public class Main implements GLEventListener, KeyListener {
...
哪些来自您的某些依赖项库:
compile 'org.jogamp.jogl:jogl-all-main:2.3.2'
compile 'org.jogamp.jogl:nativewindow-main:2.3.2'
compile 'org.jogamp.jogl:newt-main:2.3.2'
compile 'org.jogamp.gluegen:gluegen-rt-main:2.3.2'
在这种情况下,在运行Main类时,依赖项必须位于类路径中。尝试提供-cp
选项以指出可以找到您的家属的路径。
答案 1 :(得分:1)
通常在构建文件中设置main-class如下:
\s*
你把它作为参数传递? - &GT; hasProperty 然后你必须运行你的构建类似:gradle -PmainClass = MyClass build