2

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.

Andrés Alcarraz
  • 1,570
  • 1
  • 12
  • 21
Ann
  • 377
  • 5
  • 16
  • I tried that one but i can not find the jar to put in the build path – Ann Jul 26 '15 at 09:25
  • Do you have an idea of how do i implement it in Eclipse ? – Ann Jul 26 '15 at 09:29
  • You can find lib at jpos.org/download. Jpos also provide good document for starter http://jpos.org/doc/proguide-draft.pdf – nofomopls Jul 29 '15 at 02:22
  • I already did that but there is no jar file in there : http://postimg.org/image/550ykn5hr/ – Ann Aug 01 '15 at 12:44
  • It used by gradle to build newest jar file, or you can use maven. Read here https://github.com/jpos/jPOS – nofomopls Aug 03 '15 at 02:53
  • There is link to a download page on http://jpos.org/resources. (The download page itself is behind a signup page ...) – Stephen C May 02 '23 at 04:52

1 Answers1

1

We use maven dependency for including jPOS in our project

<dependency>
    <groupId>org.jpos</groupId>
    <artifactId>jpos</artifactId>
    <version>2.0.2</version>
</dependency>
Rohan
  • 411
  • 4
  • 3