We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After cloning verion 3.9 and building with ./gradlew jar I tried:
./gradlew jar
$ ./jrun org.jenetics.example.OnesCounting Error: Could not find or load main class org.jenetics.example.OnesCounting
I had to modify the CLASSPATH in jrun slightly to get it working:
$ git diff diff --git a/jrun b/jrun index 22b6cdb..9fd30fa 100755 --- a/jrun +++ b/jrun @@ -14,7 +14,7 @@ MODULES=( CLASSPATH="." for module in ${MODULES[@]} do - CLASSPATH="${CLASSPATH}:${module}/build/classes/main" + CLASSPATH="${CLASSPATH}:${module}/build/classes/java/main" CLASSPATH="${CLASSPATH}:${module}/build/resources/main" CLASSPATH="${CLASSPATH}:${module}/build/classes/test" CLASSPATH="${CLASSPATH}:${module}/build/resources/test"
The text was updated successfully, but these errors were encountered:
@bcomisky if you create a pull-request with the fix, you will be credited for it.
Sorry, something went wrong.
ok, created pull request.
Fix has been merged into r4.0.0 branch.
No branches or pull requests
After cloning verion 3.9 and building with
./gradlew jar
I tried:I had to modify the CLASSPATH in jrun slightly to get it working:
The text was updated successfully, but these errors were encountered: