Reputation: 917
I want to add External libraries of Asprise OCR in Eclipse IDE with mac os and want to run a program
Upvotes: 2
Views: 5292
Reputation: 354
The easiest way will be building your Java project using Maven. You only need to add the following dependency to your pom.xml:
<dependency>
<groupId>com.asprise.ocr</groupId>
<artifactId>java-ocr-api</artifactId>
<version>[15,)</version>
</dependency>
Alternatively, you can manually download the Java OCR library (jar) here.
Upvotes: 0
Reputation: 597274
Select a project > (menu) Project > Properties > Java Build Path > Libraries > Add External JARs
Upvotes: 2