Haohan Wang
Haohan Wang

Reputation: 607

how do I check the version of weka.jar and weka source code

I guess it is possible to check the version of a weka.jar, but how can I do that?
Also, I think it is also possible to check the version of weka source code, where can I find it?
The information on JAVA doc are mainly about the revision or version of this specific class (I guess). Is there a overall version for the whole source code?

I need this information to compare the source code I am working on and the jar my professor gives me. They are not compatible.

Thanks ahead.

Upvotes: 1

Views: 1743

Answers (2)

Phani
Phani

Reputation: 3325

java -cp /path/to/weka.jar weka.core.Version

Upvotes: 4

Leos Literak
Leos Literak

Reputation: 9406

Many libraries have such information in MANIFEST.MF file in META-INF directory:

Specification-Title: Apache POI
Specification-Version: 3.8-beta5
Specification-Vendor: The Apache Software Foundation
Implementation-Title: Apache POI
Implementation-Version: 3.8-beta5

Upvotes: 1

Related Questions