infiniteam / avacodo

GNU Lesser General Public License v2.1
2 stars 0 forks source link

Distribution jar #4

Closed ignito closed 11 years ago

ignito commented 11 years ago

We need a distribution jar that contains avacodo plus all dependencies. Mavens assembly plugin should do the job.

Purpose of this issue is to enable avacodo users to call the class SimpleCsvConverter with a straight forward command line like this:

$ java -cp avacodo-dist.jar org.avacodo.filebased.SimpleCsvConverter

Even better would be an included Manifest that sets Main-Class: org.avacodo.filebased.SimpleCsvConverter

This would simplify usage to $ java -jar avacodo-dist.jar

nittka commented 11 years ago

Prototype is implemented in avacodo-csv project. Packaging creates a ...-with-dependencies.jar which can be used as described.

basic command line options are available, only mandatory parameter is input csv (simple heuristic determines columns for bank codes and account numbers).

oehme commented 11 years ago

Closing, as this works for now.