Ann
Ann

Reputation: 377

JavaPOS library

I am trying to find .jar library for JavaPOS implementation for days, and yet I couldn't find anything to work. I found a lot of documentations like this one : http://jpos.1045706.n5.nabble.com/file/n2250344/StarReceiptTest.java and a jar file : http://www.java2s.com/Code/Jar/j/Downloadjposjar.htm but it seems it's not the one I can use with the documentation above. If there is someone who knows about this or could help me, I would really appreciate it.

Upvotes: 2

Views: 1814

Answers (1)

Rohan
Rohan

Reputation: 411

We use maven dependency for including jPOS in our project

<dependency>
    <groupId>org.jpos</groupId>
    <artifactId>jpos</artifactId>
    <version>2.0.2</version>
</dependency>

Upvotes: 1

Related Questions