There's an open source program called CIMCheck (http://wiki.cimtool.org/CIMCheck.html) that is supposed to be a command line utility which is run with command
java -jar cimcheck.jar [option...] argument1 argument2
When I downloaded the source code, there was no .jar files at all, only a couple of .scala files and others.
So I have a following directory tree
CIMCheck
-.classpath
-.gitignore
-.project
-CIMCheck.launch
-CIMCheck.xml
-scaladoc.sh
lib
-scala-library.jar
src
au
com
langdale
cimcheck
-Checker.scala
-CIMCheck.scala
util
-CommandLine.scala
prefix "-" means it's a file; whereas, names without prefix are folders.
I've downloaded Scala, and tried to compile/run mentioned .scala files with scala compiler/interpreter but there are some mistakes at compiling/running a files.
i tried runing scaladoc.sh as a shell script in cygwin on windows, but no success.
I guess I need to run only CIMCheck.scala, as a .jar but don't know how
If you need the code from the *.scala files, let me know, and I'll repost.
Cheers