Im working with my own database cluster with cassandra. I want to try some stress tests with my database, thats why i downloaded DataStax Java-driver for Cassandra.
https://github.com/datastax/java-driver
After I downloaded it, I got to know, that I need Maven to install it. So I downloaded Maven from here and added all necessary paths to the environment.
http://maven.apache.org/download.cgi
Using windows command line I went into the java-driver directory and called
mvn install
The build was successfull and afterwards I tried to execute the stress jar file in driver-examples/stress/target using command line with
java -jar theJarFile.jar
I got the Error:
Failed to load Main-Class manifest attribute from cassandra-driver-examples-stress-1.0.1-SNAPSHOT.jar
How can I run this program?
Background: I worked the first time with maven in this.
Thank you.